ppt_read
Extract text content from PowerPoint files. Use this tool to access slide data programmatically.
Instructions
Read content from a PowerPoint file
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:69-69 (registration)Tool 'ppt_read' is registered in the TOOLS array with description 'Read content from a PowerPoint file'.
["ppt_read", "Read content from a PowerPoint file"], - server.js:106-110 (handler)The handler for 'ppt_read' is a stub that returns an inspection message instead of real logic. The real implementation exists in a native binary not present in this codebase.
for (const [name, desc] of TOOLS) { server.tool(name, desc, {}, async () => ({ content: [{ type: "text", text: "This is an inspection stub. Install Local MCP: npx -y local-mcp@latest setup" }], })); }