excel_read
Read Excel spreadsheet data with AI agents to extract cell values, sheet contents, and workbook information on macOS.
Instructions
Read data from an Excel spreadsheet
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:82-86 (registration)Tool registration loop where 'excel_read' is registered with the MCP server using server.tool(). All tools share the same stub handler.
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:63-63 (schema)Tool definition in TOOLS array - 'excel_read' is declared with its description 'Read data from an Excel spreadsheet'
["excel_read", "Read data from an Excel spreadsheet"], - server.js:82-86 (handler)Handler function for excel_read (shared stub handler). Returns a stub message indicating this is an inspection stub and the real server is a native macOS binary.
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" }], })); }