tosea_get_presentation_full_data
Retrieve complete structured presentation data including outlines and slides from the ToseaAI MCP server for document-to-presentation workflows.
Instructions
Fetch full structured presentation data, including outlines and slides.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| presentation_id | Yes |
Implementation Reference
- src/tools.ts:101-112 (handler)The tool 'tosea_get_presentation_full_data' is registered and implemented in src/tools.ts. The handler calls client.getPresentationFullData(presentation_id) and wraps the result.
server.tool( "tosea_get_presentation_full_data", "Fetch full structured presentation data, including outlines and slides.", { presentation_id: z.string().uuid() }, async ({ presentation_id }) => { try { return asToolResult(await client.getPresentationFullData(presentation_id)); } catch (error) { throw wrapToolError(error); } } );