excel_create
Create new Excel spreadsheets directly from AI agents. Generate blank workbooks instantly through native macOS integration with Microsoft Excel.
Instructions
Create a new Excel spreadsheet
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:64-64 (registration)Tool name and description registration in the TOOLS array
["excel_create", "Create a new Excel spreadsheet"], - server.js:82-86 (registration)Tool registration with MCP server - creates stub handler that returns installation message
for (const [name, desc] of TOOLS) { server.tool(name, desc, {}, async () => ({ content: [{ type: "text", text: "This is an inspection stub. Install Pilot MCP on macOS: npx -y local-mcp@latest setup" }], })); } - server.js:1-11 (helper)File header comments explaining this is a stub server, real implementation is in native macOS binary
#!/usr/bin/env node /** * Minimal MCP stub for Glama inspection. * Lists all Pilot MCP tools so Glama can detect them. * The real server is a native macOS binary. */ const { McpServer } = require("@modelcontextprotocol/sdk/server/mcp.js"); const { StdioServerTransport } = require("@modelcontextprotocol/sdk/server/stdio.js"); const { z } = require("zod"); const server = new McpServer({ name: "pilot-mcp", version: "2.2.0" });