sheet-compressor
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@sheet-compressorcompress examples/northstar-auto-q3-2025.xlsx"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
sheet-compressor MCP Server
An MCP server that wraps the sheet-compressor library, exposing it to
Claude Desktop / Claude Code over stdio. It demonstrates all three MCP
primitives — Tool, Resource, Prompt — plus a stretch extract_orders
tool that makes one Claude call on Bedrock to return schema-valid order JSON.
See docs/PRD.md for the full spec, CONTEXT.md
for the domain vocabulary, and PRODUCTION.md for the
enterprise path (transport, deploy, governance, observability, CI gates).
Install
Python 3.10+.
pip install -r requirements.txt
cp .env.example .env # adjust LLM_PROVIDER / AWS_REGION / model idsextract_orders needs AWS credentials in the standard chain
(~/.aws/credentials, SSO, instance role) or — if you flip
LLM_PROVIDER=anthropic — ANTHROPIC_API_KEY in your environment. The Core
primitives (compress_spreadsheet, example_sheet, sheet_qa) make no
LLM calls and need no credentials.
Related MCP server: mcp-data-lens
Register
Claude Desktop
mcp install server.pyOr hand-edit claude_desktop_config.json:
{
"mcpServers": {
"sheet-compressor": {
"command": "python",
"args": ["/absolute/path/to/server.py"],
"env": {
"LLM_PROVIDER": "bedrock",
"AWS_REGION": "us-east-1",
"BEDROCK_MODEL_ID": "anthropic.claude-haiku-4-5"
}
}
}
}Restart Claude Desktop and the tool, resource, and prompt appear in the client.
Claude Code
Add a .mcp.json at the repo root (or ~/.claude/mcp.json for global):
{
"mcpServers": {
"sheet-compressor": {
"command": "python",
"args": ["/absolute/path/to/server.py"],
"env": {
"LLM_PROVIDER": "bedrock",
"AWS_REGION": "us-east-1",
"BEDROCK_MODEL_ID": "anthropic.claude-haiku-4-5"
}
}
}
}Then /mcp inside Claude Code confirms sheet-compressor is connected and
lists the three primitives + the stretch tool.
Demo
The demo runs against examples/northstar-auto-q3-2025.xlsx (the
automotive hero file: regional dealer-group sales, deliberately messy —
merged headers, stacked per-region tables, blank gaps). One-line summary, in
the client:
Use sheet-compressor to compress
examples/northstar-auto-q3-2025.xlsx, then usesheet_qato tell me which region had the most orders, then runextract_orderson the same file and report the total revenue.
That asks the client to walk the three primitives in sequence:
compress_spreadsheetturns the hero file into the compact anchor encoding and returns its token figures.sheet_qawraps the encoding with the anchor reader explainer + thesheetQAtask template so the model can decode the sheet and answer the region question from cell values — no extra LLM call from the server.extract_orderscompresses the sheet again and makes one Bedrock call with structured outputs to return{orders: [...], total_revenue}.
This is the flow the eval harness regression-tests, and the
flow PRODUCTION.md describes hardening for enterprise
deployment.
Tool — compress_spreadsheet
compress_spreadsheet(xlsx_path: str,
encoding: str = "anchor",
sheet: str | None = None) -> dictReturns {encoding, compressed, tokenEstimate, rawBaselineTokens, savingsRatio}.
encoding∈{anchor, invertedIndex, formatAggregation}. Defaultanchoris value-preserving and ships with a reader prompt — see ADR-0002.sheetselects a worksheet by name in a multi-sheet workbook.
Makes no LLM calls — the AI reasoning happens in the client.
Resource — sheet://examples/{name}
Returns the bundled example sheet in the default anchor encoding so a
client can see the format before sending its own data. Known names:
sample-orders (the generic order ledger). Unknown names return a clear
ValueError.
Prompt — sheet_qa
sheet_qa(encoding_text: str, question: str, encoding: str = "anchor") -> strComposes the encoding's reader explainer with the library's sheetQA task
template, substituting {ENCODING} and {QUESTION}. Hand this back to the
client and the model has everything it needs to decode the compressed sheet
and answer the question — no extra round-trip through this server.
Stretch tool — extract_orders
extract_orders(xlsx_path: str, sheet: str | None = None) -> dictCompresses xlsx_path (anchor encoding), then makes one Claude call —
on Bedrock by default per
ADR-0001 —
with structured outputs, returning:
{
"orders": [
{order_id, order_date, dealership, region, make, model,
qty, unit_price, total, status},
...
],
"total_revenue": <number>
}The provider is selected by LLM_PROVIDER (bedrock | anthropic); the
model id is a config value — live-swap Haiku 4.5 → Opus 4.8 by editing the
client's env block. This is the only place the server itself calls an LLM.
Tests
python -m pytest tests/Tests run at Seam 1 (the tool functions) against both the bundled
examples/sample-orders.xlsx ledger and the automotive hero file, and at
Seam 2 (extract_orders against a fake LLM provider) — fully deterministic,
no network. The upstream sheet-compressor library is left unmodified.
Eval harness
python -m sheet_compressor_mcp.evalsGolden cases over the hero file, scored against the real LLM provider
(per .env — Bedrock primary, Anthropic-direct fallback). Network-dependent
and separate from the unit suite. Prints [PASS] / [FAIL] per
expectation with a final N/M expectations passed summary, and exits non-zero
if any expectation failed (so a CI script can gate on it). The shipped suite
checks coverage (all four regions present, ≥100 orders extracted), schema
fidelity (every order has every required field; regions/makes drawn from the
sheet's known sets), and totals consistency (total_revenue == sum of order
totals).
Layout
server.py # MCP registration (FastMCP, stdio)
sheet_compressor_mcp/
tools.py # pure tool functions — tested directly
extract.py # extract_orders stretch tool
llm.py # LLM provider abstraction (Bedrock + Anthropic)
evals.py # golden-case eval harness (real-provider)
examples/
build_hero_file.py # generator for the automotive hero file
northstar-auto-q3-2025.xlsx
build_ledger.py # generator for the bundled generic ledger
sample-orders.xlsx
tests/
test_compress_spreadsheet.py
test_example_sheet.py
test_sheet_qa.py
test_extract_orders.py
test_evals.py
PRODUCTION.md # the enterprise path — transport, deploy,
# governance, observability, CI eval gatesThis server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mythopoeic/mcp-server-demo'
If you have feedback or need assistance with the MCP directory API, please join our Discord server