ContextCache MCP
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., "@ContextCache MCPget context pack for fixing login bug with budget 4000"
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.
ContextCache MCP
Budget-aware context packs for AI coding assistants.
Stop sending entire codebases to your LLM. Send only what matters — within a token budget you control.
ContextCache is a local MCP server that indexes your TypeScript/JavaScript project and returns Context Packs — minimal, dependency-aware file sets optimized for a specific task.
Works with Cursor, Claude Code, Codex CLI, and any MCP-compatible client.
Why use ContextCache?
Without ContextCache | With ContextCache |
AI reads 200–500 files blindly | AI receives 5–15 ranked files |
50k+ tokens per request | 2k–8k tokens within your budget |
Misses | Dependency graph expands related files |
No visibility into context cost |
|
Example: task "fix login bug" on a 500-file repo → returns AuthService.ts, JwtMiddleware.ts, and their dependencies — not your entire src/ tree.
Related MCP server: agent-workspace-mcp
Features
Budget-aware selection — set
budget_tokens; engine stops before exceeding itDependency graph — BFS expansion from seed files (not flat keyword search)
AST-based indexing — TypeScript Compiler API extracts classes, functions, imports, exports
Incremental index — skips unchanged files via
content_hashQuery cache — instant responses for repeated tasks (auto-invalidated on reindex)
Relevance score — 0.0–1.0 signal strength on every pack
100% local — SQLite on disk, no cloud, no API keys, no embeddings required
Two MCP tools —
get_context_pack,get_file_summary
Quick start
Prerequisites
Node.js 20+
A TypeScript or JavaScript project to index
1. Clone & build
git clone https://github.com/YOUR_USERNAME/contextcache-mcp.git
cd contextcache-mcp
npm install
npm run build2. Index your project
# From your project root:
node /path/to/contextcache-mcp/apps/indexer/dist/cli.js init
node /path/to/contextcache-mcp/apps/indexer/dist/cli.js index
node /path/to/contextcache-mcp/apps/indexer/dist/cli.js stats3. Add MCP server to your AI client
Cursor — create or edit .cursor/mcp.json in your project:
{
"mcpServers": {
"contextcache": {
"command": "node",
"args": ["/absolute/path/to/contextcache-mcp/apps/server/dist/index.js"],
"env": {
"CONTEXTCACHE_ROOT": "${workspaceFolder}"
}
}
}
}Claude Desktop — edit claude_desktop_config.json with the same block.
See mcp-config.example.json for a template.
4. Use it
Ask your assistant to call get_context_pack at the start of a coding task:
{
"task": "fix authentication bug in login flow",
"budget_tokens": 4000,
"mode": "cursor"
}Sample response:
{
"relevance_score": 0.84,
"budget_used": 2300,
"budget_remaining": 1700,
"summary": "3 core files, 2 dependencies via graph.",
"files": [
{
"path": "src/auth/AuthService.ts",
"score": 0.92,
"summary": "Classes: AuthService. Exports: login, authenticate",
"token_estimate": 340
}
],
"dependencies": [
{ "path": "src/repos/UserRepository.ts", "relation": "imported_by", "depth": 1 }
],
"token_metrics": {
"full_project_tokens": 58000,
"selected_tokens": 2300,
"saved_tokens": 55700,
"reduction_percent": 96.0
}
}MCP tools
get_context_pack
Builds a complete context pack for a task.
Parameter | Type | Default | Description |
|
| required | What you want to accomplish |
|
|
| Maximum tokens for the pack |
|
|
|
|
|
|
| Compare against manual snapshot baseline |
|
|
| Bypass query cache |
get_file_summary
Returns structured metadata for a single file.
{ "path": "src/auth/AuthService.ts" }CLI
npm run contextcache -- <command>Command | Description |
| Create |
| Index TS/JS files (incremental) |
| Index stats, token totals, relevance averages |
| Save a manual baseline snapshot |
| Generate a context pack from terminal |
# Human-readable pack
npm run contextcache -- pack "fix login bug" -b 4000 -m text
# JSON pack
npm run contextcache -- pack "fix login bug" -b 4000 -m jsonHow it works
Your task + budget_tokens
│
▼
QueryCache ── hit? ──► return cached pack
│ miss
▼
HeuristicRanker ──► rank files by symbols, paths, imports
│
▼
DependencyGraph ──► expand related files (BFS, 2 hops)
│
▼
TokenBudgetManager ──► select files until budget is full
│
▼
Context Pack + relevance_score + token_metricsRanking signals: symbol match · path match · graph proximity · import match
Benchmarks
npm run benchmark
npm run benchmark:report # saves benchmarks/results/latest.jsonTracks relevance_score, precision, reduction_percent, and generation_time_ms against fixture projects.
Project structure
contextcache-mcp/
├── apps/
│ ├── shared/ # ContextEngine, DependencyGraph, indexer
│ ├── indexer/ # CLI (contextcache)
│ └── server/ # MCP server (stdio)
├── benchmarks/
├── mcp-config.example.json
└── ARCHITECTURE.mdEach indexed project gets a .contextcache/ folder:
your-project/.contextcache/
├── config.json
└── contextcache.dbWhat it is NOT
Not a RAG / vector search tool
Not a cloud service
Not a flat file finder — it builds coherent packs via dependency graph
Not dependent on paid embedding APIs (MVP)
Roadmap
Python & C# parsers (tree-sitter)
Optional semantic search (local embeddings)
get_related_filestoolnpm global install (
npx contextcache)
Requirements
Requirement | Version |
Node.js | 20+ |
Languages (MVP) | TypeScript, JavaScript |
Contributing
Issues and PRs welcome. See ARCHITECTURE.md for technical details.
Fork the repo
Create a branch (
git checkout -b feature/my-feature)Run
npm run build && npm run benchmarkOpen a PR
License
This 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.
Related MCP Servers
- AlicenseAqualityCmaintenanceAn MCP server and CLI tool that transforms codebases into AI-ready context through semantic search, call graph analysis, and incremental indexing. It enables AI assistants to perform hybrid vector and keyword searches to understand complex repository structures and cross-file relationships.Last updated5451MIT
- AlicenseAqualityDmaintenanceA TypeScript-aware MCP server that provides coding agents with repository discovery, code intelligence, and web project context for local codebases. It enables deep symbol navigation, diagnostic reporting, and structural analysis of monorepos without requiring full IDE integration.Last updated7201MIT
- AlicenseBqualityBmaintenanceLocal MCP server providing project cognition capabilities for AI coding agents, including context packs, impact analysis, and git diff review through stdio communication.Last updated104MIT
- Alicense-qualityAmaintenanceA local MCP server that gives AI coding agents symbol definitions, dependency graphs, and a live architecture vocabulary for TypeScript/JavaScript repos, with no network or embeddings.Last updated22MIT
Related MCP Connectors
An MCP server that gives your AI access to the source code and docs of all public github repos
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Local-first RAG engine with MCP server for AI agent integration.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/pandolfipedro/contextcache-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server