MCP server for spreadsheet analysis and editing. Slim, token-efficient tool surface designed for LLM agents.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"spreadsheet": {
"args": [
"--workspace-root",
"/path/to/workbooks",
"--transport",
"stdio"
],
"command": "spreadsheet-mcp"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
spreadsheet-kit is the tool interaction service for agent-based spreadsheet usage.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in data / productivity
Persistent memory using a knowledge graph
Manage Supabase projects — databases, auth, storage, and edge functions
Query and manage PostgreSQL databases directly from AI assistants
Zero-dependency, token-efficient database MCP server for Postgres, MySQL, SQL Server, MariaDB, SQLite.
MCP Security Weekly
Get CVE alerts and security updates for Spreadsheet Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.

spreadsheet-kit is the tool interaction service for agent-based spreadsheet usage.
It gives agents a safe, inspectable, token-efficient way to read, analyze, mutate, verify, and operationalize Excel workbooks without falling back to brittle UI automation.
If you want an agent to work with spreadsheets like a real system instead of a screenshot puppet, this is the stack.
spreadsheet-kit ships a unified spreadsheet interaction layer across four surfaces:
| Surface | Binary / Package | Mode | Best for |
|---|---|---|---|
| CLI | asp / agent-spreadsheet | Stateless | One-shot reads, safe edits, pipelines, CI, agent tool calls |
| MCP server | spreadsheet-mcp | Stateful | Multi-turn agent sessions, workbook caching, fork/recalc workflows |
| JS SDK | spreadsheet-kit-sdk | Backend-agnostic | App integrations that can target MCP today and WASM/session backends over time |
| WASM runtime | spreadsheet-kit-wasm | In-process | Experimental byte/session embedding for local runtimes |
Supported workbook modes:
.xlsx / .xlsm — read + write.xls / .xlsb — discovery/read-oriented workflows onlyThe current surface is much stronger than a plain “read some cells” tool. Major capabilities now include:
asp as the primary CLI with agent-spreadsheet preserved as a compatibility aliasasp verify proof and asp verify diffwrite appendwrite clone-template-rowwrite clone-row-bandwrite name define|update|delete)write formulas replace)npm i -g agent-spreadsheet
asp --help
Installs both:
asp — primary commandagent-spreadsheet — compatibility aliasDownloads a prebuilt native binary for your platform. No Rust toolchain required.
# CLI
cargo install spreadsheet-kit --features recalc
... [View full README on GitHub](https://github.com/PSU3D0/spreadsheet-mcp#readme)