Skip to main content
Glama

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
NameRequiredDescriptionDefault
presentation_idYes

Implementation Reference

  • 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);
        }
      }
    );

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/ToseaAI/mcp-ToseaAI'

If you have feedback or need assistance with the MCP directory API, please join our Discord server