word_create
Creates a new Word document for reports, letters, or notes. Start document generation directly from AI tools without manual app switching.
Instructions
Create a new Word document
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:64-64 (registration)Registration entry for the 'word_create' tool in the TOOLS array. This is a stub/inspection server that delegates to a native binary.
["word_create", "Create a new Word document"], - server.js:107-109 (handler)Generic handler registration loop. The 'word_create' tool uses this same stub handler that returns a placeholder message instead of actual logic.
server.tool(name, desc, {}, async () => ({ content: [{ type: "text", text: "This is an inspection stub. Install Local MCP: npx -y local-mcp@latest setup" }], }));