tosea_list_export_files
Lists exported files for a ToseaAI presentation to manage and access available outputs from document-to-presentation workflows.
Instructions
List user-visible exported files for a presentation.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| presentation_id | Yes |
Implementation Reference
- src/tools.ts:397-407 (handler)Registration and implementation of the 'tosea_list_export_files' tool. It validates input using Zod and calls the 'client.listExportFiles' method.
server.tool( "tosea_list_export_files", "List user-visible exported files for a presentation.", { presentation_id: z.string().uuid() }, async ({ presentation_id }) => { try { return asToolResult(await client.listExportFiles(presentation_id)); } catch (error) { throw wrapToolError(error); } }