Deterministic context packing for AI coding agents; measured 83% fewer input tokens, local.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Deterministic context budgeting for AI coding agents
Stop sending agents 200k tokens of irrelevant code. Redcon scores, compresses, and packs repo context so your agent gets what it actually needs.
Install - Quick Start - How It Works - Docs
AI coding agents burn tokens on irrelevant context. You either:
Redcon solves both. It ranks files by task relevance, compresses them with language-aware strategies (full, snippet, symbol extraction, summary), and packs the result under your token budget. Deterministic, local-first, no embeddings. One MCP server covers Claude Code, Cursor, Windsurf, Cline and Zed; a plain CLI covers CI. Measured on this repository it cuts input tokens by more than 83% at the same task coverage (methodology).
On a flat subscription - Claude Pro/Max, Cursor, GitHub Copilot - the token bill isn't what stings, the usage limit is. Redcon cuts the tokens each task needs, so the same plan covers far more work before you hit the weekly wall. Same subscription, more runway.
It stretches the budget you already pay for, and reports exactly how much it saved.
The extension installs the CLI via pip, registers the MCP server for Claude Code, Cursor, and Windsurf, and gives you a sidebar with budget analytics, file rankings, and compression dashboards.
The init command auto-configures MCP for Claude Code, Cursor and Windsurf, plus VS Code, Codex CLI, Gemini CLI, Junie CLI, Cline and Zed when they are detected, so your AI agent can call redcon_rank, redcon_search, redcon_compress, and redcon_budget as native tools. It also writes a short AGENTS.md section that tells agents to prefer these tools for context selection.
Output goes to run.json (machine-readable) and run.md (human-readable). Use them in CI, or feed the compressed context directly into your agent.
For a full end-to-end walkthrough on a realistic service repo (plan, pack, validate, with deterministic output), see examples/service-repo.
Every step is deterministic. Same input, same output. No embeddings, no random chunking.
Selection quality is measured, not claimed. context-eval/
is an open benchmark for context-selection tools: tasks come from real git
commits, ground truth is the files each commit actually modified, and every
tool packs the same token budget. Current results (33 tasks, 24k budget):
| Tool | Mean coverage | Tokens / coverage point |
|---|---|---|
redcon | 43.8% | 306.8 |
keyword-topk (baseline) | 29.8% | 538.9 |
aider-repomap (real aider) | 15.3% | 533.3 |
pagerank (baseline) | 11.4% | 720.0 |
Rerun it on any repo: python context-eval/run.py --repo /path/to/repo.
Methodology, limitations, and how to add your own tool:
context-eval/README.md.
mcp-name: io.github.natiixnt/redcon
Instead of pushing a 30k-token blob to your agent, Redcon exposes 9 MCP tools the agent calls on demand:
| Tool | What it does |
|---|---|
redcon_rank | Top-K files with scores and reasons - call this first |
redcon_overview | Lightweight repo map grouped by directory |
redcon_repo_map | Top ranked files plus their code signatures, fitted under a token budget |
redcon_compress | Compressed single-file view for cheap inspection |
redcon_search | Regex search scoped to ranked files or full repo |
redcon_structural_search | ast-grep structural search - patterns match the AST, not text |
redcon_budget | Plan fitting files within a token budget |
redcon_run | Run a shell command, return its output compressed |
redcon_quality_check | Run a command and verify the compressed output against the quality harness |
Typical agent flow uses ~5k tokens for exploration instead of 30k for a blob. The agent itself decides what to read in full.
Config gets written automatically to:
.mcp.json (Claude Code).cursor/mcp.json (Cursor)~/.codeium/windsurf/mcp_config.json (Windsurf)Source files are only half the bloat. The other half is command output: git diff, pytest, cargo test, grep, ls -R. Redcon's redcon_run MCP tool (and redcon run CLI) wraps the call, parses the output, and returns a budget-aware compressed view that preserves every fact the agent actually needs.
Headline reductions on representative inputs:
| Compressor | Fixture | Raw tokens | Compact | Ultra |
|---|---|---|---|---|
git diff | 12 files, 240 hunks | 8,078 | 97.0% | 99.5% |
pytest | 30 failures + 200 passes | 2,555 | 73.8% | 99.2% |
grep/rg | 600 matches across 50 files | 7,015 | 76.9% | 99.9% |
find | 500 paths | 3,398 | 81.3% | 99.8% |
ls -R | 30 dirs x 15 files | 1,543 | 33.5% | 99.0% |
kubectl events | 200-row CrashLoopBackOff | ~5,000 | 91.5% | 99.5% |
py-spy collapsed | 200 stacks | 2,385 | 90.0% | 99.0% |
json-line log | 200 NDJSON records | 6,038 | 91.1% | 98.0% |
coverage report | 50-file grid | 738 | 73.2% | 95.0% |
psql EXPLAIN ANALYZE | 11-node Postgres plan | 435 | 71.3% | 93.3% |
Quality is enforced separately. Every compressor declares must_preserve_patterns (file paths in a diff, failing test names in pytest, branch name in git status, slowest node operator in EXPLAIN); the M8 quality harness rejects any compressor whose compact output drops a fact present in the raw input. Run it as a CI step:
Twenty compressors ship today: git_diff, git_status, git_log, pytest, cargo_test, npm_test (vitest+jest), go_test, grep, ls, tree, find, lint (ruff+mypy), docker, pkg_install (pip+npm+yarn), kubectl_get/kubectl_events, profiler (py-spy+perf), json_log, coverage, sql_explain (Postgres+MySQL TREE), bundle_stats (webpack + esbuild metafiles). Full per-schema benchmarks: docs/benchmarks/cmd/.
Beyond per-call compression, four layers compose across an agent session:
redcon/cmd/pipeline.py collapse to f001 on later mentions. Lazy first-use, never net-negative.{ref:001} aliases on second-and-later occurrences. Empirically 23% of session output had block-level overlap.c001 aliases the same way paths do. Empirically 72% of distinct symbols recur >=2 times per session.pytest (set-diff over failure names), git_diff (file-set with per-file +/- counts), and coverage (per-file pp moves) win meaningfully over generic line-diff. Always picks min(cost_delta, cost_abs) so non-regressive by construction.mp_sha=<16hex> over the sorted multiset of (pattern, capture) extracted from raw. Auditors recompute the cert against the compressed text to detect spurious additions or capture thinning - upgrades the existing must-preserve boolean to set-equality.No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/redcon)<a href="https://allmcps.com/mcp/redcon"><img src="https://allmcps.com/api/badge/redcon?style=directory" alt="Redcon on AllMCPs" /></a>