token-filter-mcp
An MCP server that intelligently filters and compresses tool outputs to reduce context window usage, saving up to 90% of tokens by removing noise such as passing tests and redundant information.
README
<div align="center">
🧹 token-filter-mcp
Your LLM is wasting 80% of its context window on noise.<br> This fixes that.
<br>
<img src="https://img.shields.io/badge/test_runners-92%25_savings-success?style=for-the-badge" alt="test runners 92% savings"/> <img src="https://img.shields.io/badge/file_reads-94%25_savings-success?style=for-the-badge" alt="file reads 94% savings"/> <img src="https://img.shields.io/badge/git_ops-89%25_savings-success?style=for-the-badge" alt="git ops 89% savings"/>
<br><br>
An MCP server that sits between your AI coding assistant and its tools,<br> intelligently compressing outputs before they consume your precious context.<br> Longer sessions. Better reasoning. Lower costs.
</div>
<br>
💸 The Problem Nobody Talks About
Every time your AI assistant runs a command, it dumps the entire raw output into its context window:
+ ✓ src/auth.test.ts (14 tests) ← you don't need this
+ ✓ src/utils.test.ts (8 tests) ← or this
+ ✓ src/payments.test.ts (12 tests) ← or this
+ ✓ src/users.test.ts (10 tests) ← or this
- ✗ src/orders.test.ts (3 tests) ← THIS is what matters
- ● should validate quantity > 0
- Expected: error
- Received: success
The vast majority of tool output is noise: tests that pass, git headers, resolution trees, progress bars, whitespace. ~80% of what goes into the context window is information the LLM will never act on.
That noise eats your context window, degrades reasoning quality, and costs you money.
<br>
⚡ The Solution
<table> <tr> <td width="50%">
❌ Without token-filter-mcp
- Context fills up fast
- LLM loses track of conversation
- Paying for tokens it ignores
- Sessions hit context limit early
- Reads 14 lines to find 1 failure
</td> <td width="50%">
✅ With token-filter-mcp
- Context stays lean
- LLM maintains coherence longer
- Only paying for useful tokens
- Sessions last significantly longer
- Reads exactly the failure, acts immediately
</td> </tr> </table>
token-filter-mcp intercepts every tool output and applies intelligent, context-aware filtering — returning only what the LLM actually needs to make decisions.
No configuration needed. No changes to your workflow. Just plug it in.
<br>
🎯 Real Results
<table> <tr> <th>Scenario</th> <th>Without filter</th> <th>With filter</th> <th>Savings</th> </tr> <tr> <td><code>npm test</code> (57 tests, all pass)</td> <td>295 chars / 14 lines</td> <td>23 chars / 1 line</td> <td><b>🟢 92%</b></td> </tr> <tr> <td><code>npm test</code> (3 failures)</td> <td>~5,200 chars</td> <td>~480 chars</td> <td><b>🟢 91%</b></td> </tr> <tr> <td>File read (signatures mode)</td> <td>7,992 chars / 243 lines</td> <td>483 chars / 9 lines</td> <td><b>🟢 94%</b></td> </tr> <tr> <td>20 repeated log lines</td> <td>312 chars / 22 lines</td> <td>33 chars / 2 lines</td> <td><b>🟢 89%</b></td> </tr> <tr> <td>Long unknown command (150 lines)</td> <td>3,492 chars / 151 lines</td> <td>2,342 chars / 101 lines</td> <td><b>🟡 33%</b></td> </tr> </table>
Average savings across real-world tool outputs: 60-90% fewer tokens consumed
<br>
🧠 How It Works
flowchart LR
A[🤖 LLM Agent] -->|tool call| B[🧹 token-filter-mcp]
B -->|execute| C[💻 System]
C -->|raw output| B
B -->|filtered output| A
style B fill:#7c3aed,stroke:#5b21b6,color:#fff
style A fill:#2563eb,stroke:#1d4ed8,color:#fff
style C fill:#059669,stroke:#047857,color:#fff
<table> <tr> <td>
1️⃣ Detect — Identifies what command was run (test runner? git? linter?)
2️⃣ Execute — Runs the command and captures full output
3️⃣ Filter — Applies the optimal strategy for that command type
4️⃣ Verify — Ensures no errors or actionable info was removed
5️⃣ Return — Sends compressed output to the LLM
</td> </tr> </table>
🎨 Contextual Detection
The server doesn't blindly truncate. It understands what you ran and applies the right strategy:
| It detects... | And does this... |
|---|---|
| 🧪 Test runners (jest, vitest, pytest, cargo test, go test) | Strips passing tests. Shows only failures with location + expected/received |
📊 git status |
Converts to M 3 | A 1 | D 0 | ? 2 + file list |
📝 git diff |
Removes repeated headers, keeps only hunks with ±3 context |
📜 git log |
One-liner: abc1234 feat: add auth (2h ago) × 15 max |
| 🔍 Linters (tsc, eslint, biome, ruff) | Groups errors by rule/file, omits clean files |
| 📦 Package installs | Returns ok + 847 packages instead of the resolution tree |
| ❓ Unknown commands | Conservative: deduplicate + truncate to 100 lines |
🛡️ Zero Information Loss
The #1 design principle: never hide an error.
✅ Lines matching error patterns (FAIL, Error:, TypeError, panic...) → NEVER removed
✅ Non-zero exit codes → full error output preserved
✅ Parser can't understand format → returns raw output
✅ passthrough mode available for when you need everything
<br>
🚀 Installation
<details open> <summary><b>Using npx (recommended, zero install)</b></summary>
Add this to your MCP client config — that's it:
{
"mcpServers": {
"token-filter": {
"command": "npx",
"args": ["-y", "token-filter-mcp"]
}
}
}
</details>
<details> <summary><b>Global install</b></summary>
npm install -g token-filter-mcp
{
"mcpServers": {
"token-filter": {
"command": "token-filter-mcp"
}
}
}
</details>
<br>
📍 Where does the config go?
| Client | Config file |
|---|---|
| Kiro | .kiro/settings/mcp.json or ~/.kiro/settings/mcp.json |
| Claude Desktop | claude_desktop_config.json |
| Cursor | .cursor/mcp.json |
| Any MCP client | Wherever it reads mcpServers config |
<br>
🔧 5 Tools, One Purpose
<details open> <summary><h3>⚡ <code>filtered_shell</code> — Run anything, get only what matters</h3></summary>
{ "command": "npm test", "filter_level": "normal" }
| Level | Behavior |
|---|---|
normal |
Smart filtering with sensible defaults |
aggressive |
50% additional reduction for tight context budgets |
passthrough |
Raw output when you need everything (capped at 200KB) |
</details>
<details> <summary><h3>📖 <code>filtered_read</code> — Read files without the bloat</h3></summary>
{ "path": "src/app.ts", "mode": "signatures" }
| Mode | What it returns |
|---|---|
full |
Content minus blank blocks, license headers, grouped imports |
signatures |
Only declarations — no implementation bodies |
relevant |
Only sections matching focus pattern with ±10 lines context |
Supports: TypeScript, JavaScript, Python, Rust, Go
</details>
<details> <summary><h3>🔍 <code>filtered_grep</code> — Search without the wall of text</h3></summary>
{ "pattern": "useState", "path": "src", "group_by": "file", "max_results": 20 }
Results grouped by file, deduplicated, with context lines. Uses ripgrep when available.
</details>
<details> <summary><h3>🧪 <code>smart_test</code> — Tests that report only what broke</h3></summary>
{ "command": "npm test" }
All pass:
[PASS] 47/47 tests passed (3.2s)
Failures:
[PASS] 44/47 tests passed
[FAIL] 3 failures:
1. src/auth.test.ts:42 — "should refresh token"
Expected: 200
Received: 401
2. src/payments.test.ts:89 — "should validate 3DS"
TypeError: Cannot read property 'status' of undefined
at processPayment (src/payments.ts:156)
Auto-detects: Jest, Vitest, pytest, cargo test, go test
</details>
<details> <summary><h3>🌿 <code>smart_git</code> — Git without the verbosity</h3></summary>
{ "operation": "status" }
| Operation | What you get |
|---|---|
status |
M 3 | A 1 | D 0 | ? 2 + file list |
diff |
Only hunks with changes, no header spam |
log |
abc1234 feat: add auth (2h ago) × 15 |
commit |
ok abc1234 |
push |
ok main → origin/main |
pull |
ok +3 files, 47 insertions |
</details>
<br>
⚙️ Configuration (Optional)
Works great out of the box. Customize only if you want to.
<details> <summary><b>Per-project config</b> — <code>.token-filter.json</code></summary>
{
"defaults": {
"max_output_lines": 100,
"test_show_passes": false,
"git_log_max": 15,
"diff_context_lines": 3,
"dedup_threshold": 3
},
"commands": {
"my-custom-script.sh": { "filter_level": "passthrough" }
},
"metrics": { "enabled": true }
}
</details>
<details> <summary><b>Global config</b> — <code>~/.config/token-filter-mcp/config.json</code></summary>
Same schema. Project config overrides global. Global overrides built-in defaults.
</details>
<br>
📊 Built-in Observability
<details> <summary>View metrics details</summary>
When enabled, every invocation is logged to ~/.config/token-filter-mcp/metrics.jsonl:
{
"tool": "smart_test",
"command": "npm test",
"rawChars": 5200,
"filteredChars": 480,
"savingsPercent": 90.7,
"strategy": "test_result_filter",
"filterDurationMs": 3,
"timestamp": "2026-06-30T15:30:00Z"
}
Auto-rotated at 5MB, max 5 history files.
What it tracks:
- Real savings per tool and command type
- Which filters are most effective
- Passthrough re-invocations (signal that a filter might be too aggressive)
</details>
<br>
🛡️ Guarantees
| Guarantee | Detail |
|---|---|
| 🔒 Zero loss | Errors, test failures, and changes are never filtered out |
| ⚡ < 50ms overhead | Filtering adds negligible latency vs raw execution |
| 🪂 Safe fallback | Unknown commands get conservative treatment, not silence |
| 🔌 No lock-in | Standard MCP protocol — works with any compliant client |
| 🏠 No network | Everything runs locally over stdio. Your code never leaves your machine |
<br>
🛠️ Development
git clone https://github.com/VMexicano/token-filter-mcp
cd token-filter-mcp
npm install
npm run build
npm test # 57 tests, all passing
<br>
<div align="center">
The best token is the one you never spend.
<br>
Made with 💖 by Victor Mexicano
</div>
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。