excel_write_cell
Write data to Excel cells. Set cell values in a spreadsheet to automate data entry.
Instructions
Write data to Excel cells
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:68-68 (registration)The tool 'excel_write_cell' is registered in the TOOLS array as part of the MCP server definition. However, this is a stub/inspection server — the actual implementation lives in a native binary ('Local MCP' v3.0.163) that is not present in this codebase. The stub simply returns a placeholder message.
["excel_write_cell", "Write data to Excel cells"], - server.js:106-109 (handler)The handler for all tools (including excel_write_cell) is a generic async function that returns a stub message. The real handler logic is in a separate native binary and not available in this codebase.
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" }], }));