excel_write_cell
Write data to Excel cells on macOS using AI agents. Update Microsoft Excel spreadsheets programmatically to automate data entry and reporting workflows.
Instructions
Write data to Excel cells
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:82-86 (registration)Registration of excel_write_cell tool (and all other tools) using server.tool(). This is a stub implementation that returns a generic 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:65-65 (registration)Definition of excel_write_cell in the TOOLS array with its description
["excel_write_cell", "Write data to Excel cells"], - server.js:1-11 (helper)Header comments explaining this is a stub server and imports for MCP server setup
#!/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" });