by mksglu
MCP is the protocol for tool access. We're the virtualization layer for context.
# Add to your Claude Code skills
git clone https://github.com/mksglu/claude-context-modeThe other half of the context problem.
Every MCP tool call in Claude Code dumps raw data into your 200K context window. A Playwright snapshot costs 56 KB. Twenty GitHub issues cost 59 KB. One access log — 45 KB. After 30 minutes, 40% of your context is gone.
Inspired by Cloudflare's Code Mode — which compresses tool definitions from millions of tokens into ~1,000 — we asked: what about the other direction?
Context Mode is an MCP server that sits between Claude Code and these outputs. 315 KB becomes 5.4 KB. 98% reduction.
https://github.com/user-attachments/assets/07013dbf-07c0-4ef1-974a-33ea1207637b
/plugin marketplace add mksglu/claude-context-mode
/plugin install context-mode@claude-context-mode
Restart Claude Code. Done. This installs the MCP server + a PreToolUse hook that automatically routes tool outputs through the sandbox + slash commands for diagnostics and upgrades.
| Command | What it does |
|---|---|
| /context-mode:ctx-stats | Show context savings for the current session — per-tool breakdown, tokens consumed, savings ratio. |
| /context-mode:ctx-doctor | Run diagnostics — checks runtimes, hooks, FTS5, plugin registration, npm and marketplace versions. |
| /context-mode:ctx-upgrade | Pull latest from GitHub, rebuild, migrate cache, fix hooks. |
claude mcp add context-mode -- npx -y context-mode
claude --plugin-dir ./path/to/context-mode
MCP has become the standard way for AI agents to use external tools. But there is a tension at its core: every tool interaction fills the context window from both sides — definitions on the way in, raw output on the way out.
With 81+ tools active, 143K tokens (72%) get consumed before your first message. And then the tools start returning data. A single Playwright snapshot burns 56 KB. A gh issue list dumps 59 KB. Run a test suite, read a log file, fetch documentation — each response eats into what remains.
Code Mode showed that tool definitions can be compressed by 99.9%. Context Mode applies the same principle to tool outputs — processing them in sandboxes so only summaries reach the model.
| Tool | What it does | Context saved |
|---|---|---|
| batch_execute | Run multiple commands + search multiple queries in ONE call. | 986 KB → 62 KB |
| execute | Run code in 10 languages. Only stdout enters context. | 56 KB → 299 B |
| execute_file | Process files in sandbox. Raw content never leaves. | 45 KB → 155 B |
| index | Chunk markdown into FTS5 with BM25 ranking. | 60 KB → 40 B |
| search | Query indexed content with multiple queries in one call. | On-demand retrieval |
| fetch_and_index | Fetch URL, detect content type (HTML/JSON/text), chunk and index. | 60 KB → 40 B |
Each execute call spawns an isolated subprocess with its own process boundary. Scripts can't access each other's memory or state. The subprocess runs your code, captures stdout, and only that stdout enters the conversation context. The raw data — log files, API responses, snapshots — never leaves the sandbox.
Eleven language runtimes are available: JavaScript, TypeScript, Python, Shell, Ruby, Go, Rust, PHP, Perl, R, and Elixir. Bun is auto-detected for 3-5x faster JS/TS execution.
Authenticated CLIs work through credential passthrough — gh, aws, gcloud, kubectl, docker inherit environment variables and config paths without exposing them to the conversation.
When output exceeds 5 KB and an intent is provided, Context Mode switches to intent-driven filtering: it indexes the full output into the knowledge base, searches for sections matching your intent, and returns only the relevant matches with a vocabulary of searchable terms for follow-up queries.
The index tool chunks markdown content by headings while keeping code blocks intact, then stores them in a SQLite FTS5 (Full-Text Search 5) virtual table. Search uses BM25 ranking — a probabilistic relevance algorithm that scores documents based on term frequency, inverse document frequency, and document length normalization. Porter stemming is applied at index time so "running", "runs", and "ran" match the same stem.
When you call search, it returns relevant content snippets focused around matching query terms — not full documents, not approximations, the actual indexed content with smart extraction around what you're looking for. fetch_and_index extends this to URLs: fetch, convert HTML to markdown, chunk, index. The raw page never enters context.
Search uses a three-layer fallback to handle typos, partial terms, and substring matches:
The searchWithFallback method cascades through all three layers and annotates results with matchLayer so you know which layer resolved the query.
Search results use intelligent extraction instead of truncation. Instead of returning the first N characters (which might miss the important part), Context Mode finds where your query terms appear in the content and returns windows around those matches. If your query is "authentication JWT token", you get the paragraphs where those terms actually appear — not an arbitrary prefix.
The search tool includes progressive throttling to prevent context flooding from excessive individual calls:
batch_executeThis encourages batching queries via search(queries: ["q1", "q2", "q3"]) or batch_execute instead of making dozens of individual calls.
The stats tool tracks context consumption in real-time. Network I/O inside the sandbox is automatically tracked for JS/TS executions.
| Metric | Value | |---|---| | Session | 1.4 min | | Tool calls | 1 | | Total data processed | 9.6MB | | Kept in sandbox | 9.6MB | | Entered context | 0.3KB | | Tokens consumed | ~82 | | Context savings | 24,576.0x (99% reduction) |
| Tool | Calls | Context | Tokens | |---|---|---|---| | execute | 1 | 0.3KB | ~82 | | Total | 1 | 0.3KB | ~82 |
Without context-mode, 9.6MB of raw tool output would flood your context window. Instead, 9.6MB (99%) stayed in sandbox — saving ~2,457,600 tokens of context space.
When installed as a plugin, Context Mode includes a PreToolUse hook that automatically injects routing instructions into subagent (Task tool) prompts. Subagents learn to use batch_execute as their primary tool and search(queries: [...]) for follow-ups — without any manual configuration.
Bash subagents are automatically upgraded to general-purpose so they can access MCP tools. Without this, a subagent_type: "Bash" agent only has the Bash tool — it can't call batch_execute or search, and all raw output floods context.
Measured across real-world scenarios:
Playwright snapshot — 56.2 KB raw → 299 B context (99% saved) GitHub Issues (20) — 58.9 KB raw → 1.1 KB context (98% saved) Access log (500 requests) — 45.1 KB raw → 155 B context (100% saved) Context7 React docs — 5.9 KB raw → 261 B context (96% saved) Analytics CSV (500 rows) — 85.5 KB raw → 222 B context (100% saved) Git log (153 commits) — 11.6 KB raw → 107 B context (99% saved) Test output (30 suites) — 6.0 KB raw → 337 B context (95% saved) Repo research (subagent) — 986 KB raw → 62 KB context (94% saved, 5 calls vs 37)
Over a full session: 315 KB of raw output becomes 5.4 KB. Session time before slowdown goes from ~30 minutes to ~3 hours. Context remaining after 45 minutes: 99% instead of 60%.
No comments yet. Be the first to share your thoughts!