ppt_create
Create a new PowerPoint presentation file on your Mac to start building slides from scratch.
Instructions
Create a new PowerPoint presentation
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:106-110 (registration)The 'ppt_create' tool is registered in the TOOLS array and then registered on the MCP server via server.tool() in a loop. However, the actual handler is just a stub that returns an inspection message.
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" }], })); } - server.js:70-70 (schema)The tool name 'ppt_create' and its description 'Create a new PowerPoint presentation' are defined in the TOOLS array. No input schema is defined (empty object passed to server.tool).
["ppt_create", "Create a new PowerPoint presentation"],