tosea_list_exports
List presentations with existing export history to track and manage exported files from your document-to-presentation workflow.
Instructions
List presentations that already have export history.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools.ts:389-395 (handler)Implementation of the tosea_list_exports tool handler.
server.tool("tosea_list_exports", "List presentations that already have export history.", {}, async () => { try { return asToolResult(await client.listExports()); } catch (error) { throw wrapToolError(error); } });