MCP Tools
Compression, retrieval, and stats as MCP tools for Claude Code, Cursor, and any MCP-compatible host.
Headroom's MCP server exposes compression, retrieval, and observability as tools that any MCP-compatible AI coding tool can call -- Claude Code, Cursor, Codex, and more. No proxy required.
Installation
# MCP tools only (lightweight)
pip install "headroom-ai[mcp]"
# Or with the proxy
pip install "headroom-ai[proxy]"Setup for Claude Code
# Register with Claude Code (one-time)
headroom mcp install
# Start Claude Code — it now has headroom tools
claudeClaude Code can now compress content on demand, retrieve originals, and check session stats.
For automatic compression of all traffic, also run the proxy:
# Terminal 1
headroom proxy
# Terminal 2
ANTHROPIC_BASE_URL=http://127.0.0.1:8787 claudeTools
headroom_compress
Compress content on demand. The LLM calls this when it wants to shrink large content before reasoning over it.
Parameters:
content(required) -- text to compress (files, JSON, logs, search results)
Returns:
compressed-- compressed texthash-- key for retrieving the original lateroriginal_tokens/compressed_tokens/savings_percenttransforms-- which compression algorithms were applied
Example flow:
Claude: Let me compress this large output to save context space.
-> headroom_compress(content="[5000 lines of grep results...]")
<- {
"compressed": "[key matches with context...]",
"hash": "a1b2c3d4e5f6...",
"original_tokens": 12000,
"compressed_tokens": 3200,
"savings_percent": 73.3,
"transforms": ["router:search:0.27"]
}The original is stored locally for 1 hour. If the LLM needs the full content later, it calls headroom_retrieve.
headroom_retrieve
Retrieve original uncompressed content by hash.
Parameters:
hash(required) -- hash key from a previous compressionquery(optional) -- search within the original to return only matching items
Returns:
original_content(full retrieval) orresults(filtered search)source--"local"or"proxy"
Retrieval checks the local store first, then falls back to the proxy's store. Hashes from either source work transparently.
headroom_stats
Session compression statistics.
Returns:
compressions,retrievals,tokens_saved,savings_percentestimated_cost_saved_usdrecent_events-- last 10 compression/retrieval eventssub_agents-- stats from sub-agent MCP instancescombined-- main + sub-agent totalsproxy-- request count, cache hits, cost saved (if proxy is running)
Sub-agent stats are aggregated via a shared stats file at ~/.headroom/session_stats.jsonl.
CLI commands
# Install (registers with Claude Code)
headroom mcp install
headroom mcp install --proxy-url http://host:9000 # Custom proxy URL
headroom mcp install --force # Overwrite existing
# Check status
headroom mcp status
# Uninstall
headroom mcp uninstall
# Debug mode
headroom mcp serve --debug
# Streamable HTTP mode
headroom mcp serve --transport http --host 127.0.0.1 --port 8788 --path /mcpMCP host configuration
For MCP hosts that let you configure a local stdio server, point them at headroom mcp serve. If you also run the proxy, pass the proxy URL explicitly so retrieval and stats come from the intended proxy instance.
If you are publishing or consuming Headroom through an MCP registry, use the canonical descriptor at https://github.com/headroomlabs-ai/headroom/blob/main/server.json. It captures the package form for headroom-ai[mcp] and the current headroom mcp serve launch contract in one file.
{
"mcpServers": {
"headroom": {
"type": "stdio",
"command": "headroom",
"args": ["mcp", "serve", "--proxy-url", "http://127.0.0.1:8787"]
}
}
}For multiple proxy instances, register one stdio MCP server per proxy URL:
{
"mcpServers": {
"headroom": {
"type": "stdio",
"command": "headroom",
"args": ["mcp", "serve", "--proxy-url", "http://127.0.0.1:8787"]
},
"headroom-azure": {
"type": "stdio",
"command": "headroom",
"args": ["mcp", "serve", "--proxy-url", "http://127.0.0.1:8788"]
}
}
}If you need Streamable HTTP instead of stdio, run headroom mcp serve --transport http and point your MCP host at that endpoint. The default path is /mcp, and the default port is 8788.
Do not assume that a running proxy exposes an HTTP MCP endpoint at /mcp. The proxy serves its own API; it does not automatically provide the MCP HTTP transport.
command: "headroom" fails to start
The configurations above use "command": "headroom", which only works if the headroom
executable is on the PATH your MCP host (Codex, etc.) sees at startup. If you installed Headroom
into a project virtualenv — for example with uv add headroom-ai — the CLI lives only inside
that venv, and the host fails at launch with:
MCP client for `headroom` failed to start: MCP startup failed: No such file or directory (os error 2)Install Headroom so it's globally on PATH — uv tool install "headroom-ai[mcp]" (or
pipx install "headroom-ai[mcp]") — or replace "headroom" with the absolute path to the binary
(command -v headroom, or where headroom on Windows).
Cross-tool compatibility
| Tool | MCP Support | Setup |
|---|---|---|
| Claude Code | Native | headroom mcp install |
| Cursor | Supported | Add to Cursor MCP settings |
| Codex | If supported | Configure MCP server |
| Any MCP host | Yes | Point to headroom mcp serve |
Architecture
For user-managed Serena drift, run headroom mcp reconcile to inspect the current recommendation. Add --adopt only when you want Headroom to replace the Serena entry.
MCP only (no proxy)
The LLM calls headroom_compress on demand. Compression happens locally in the MCP process. Originals are stored in a local CompressionStore with 1-hour TTL.
MCP + Proxy (full setup)
The proxy compresses all traffic at the HTTP level (before the LLM sees content). MCP tools operate after the LLM receives content. They handle different data and do not double-compress.
headroom_retrieve checks the local store first, then falls back to the proxy's store.
Troubleshooting
"MCP SDK not installed" -- Run pip install "headroom-ai[mcp]".
"Proxy not running" -- Start the proxy with headroom proxy in another terminal. Only needed for proxy-backed retrieval.
"Entry not found or expired" -- Local content expires after 1 hour, proxy content after 5 minutes.
Claude doesn't see headroom tools -- Run headroom mcp status, restart Claude Code, and verify with /mcp inside Claude Code.
Claude Code /usage attributes a large share to headroom MCP
Claude Code counts MCP tool calls and MCP tool results as session context. If a
long-running workflow or a subagent-heavy command calls headroom_compress,
headroom_retrieve, or headroom_stats many times, /usage can show a visible
share under the headroom MCP server even when Headroom is saving tokens inside
individual tool results.
That number is not a direct "Headroom overhead" bill. It means Claude Code kept Headroom MCP interactions in the conversation context. Deep research workflows can amplify this because each subagent has its own requests and may keep its own MCP results in context.
Use these checks when the MCP share looks high:
- Run
headroom_statsand comparetokens_savedwith the number of MCP calls. - Use
/compactafter large MCP-backed investigation steps so old MCP tool results stop occupying the active context window. - Prefer the proxy path for automatic compression of normal Claude Code traffic:
headroom proxyplusANTHROPIC_BASE_URL=http://127.0.0.1:8787 claude. - Disable the MCP server for sessions where you only want proxy-level
compression and do not need on-demand
headroom_compressorheadroom_retrieve. - For deep research or custom subagent workflows, reduce unnecessary subagent fan-out first; subagent traffic usually dominates the usage picture before MCP overhead does.