CodebaseAgent-MCP
The CodebaseAgent-MCP server enables token-efficient, asynchronous codebase analysis by delegating large repository exploration to a dedicated OpenAI-compatible LLM (local or cloud-based), returning only relevant findings to the primary coding assistant to reduce token consumption, context size, and latency.
Core tools:
List available libraries (
codebase_list_libraries): Retrieve all configured local codebases/libraries available for analysis.Start async file discovery (
codebase_start_job_related_files_search): Kick off a background job to find files relevant to a specific entity or action. Best used before full analysis to narrow down relevant files.Start async codebase analysis (
codebase_start_job_analysis): Launch a background job for deep analysis of a single entity or action, returning detailed insights, recommendations, implementation guidance, and usage examples. Works best after file discovery.Check job status (
codebase_get_job_status): Poll the progress of any running job until it reaches a terminal state (successorfailure). Recommended polling interval: ~50 seconds.Retrieve job results (
codebase_get_job_result): Fetch the final result, error details, or latest partial output for a completed or in-progress job.Cancel a job (
codebase_cancel_job): Request cancellation of any queued or actively running job.
Additional features:
Qdrant integration for RAG caching and semantic retrieval of code entities.
Automatic conversation history compression.
Sandboxed filesystem access restricted to configured library roots.
Support for pluggable external stdio MCP tools.
Installation of subagents/skills into coding agent harnesses (ClaudeCode, OpenCode, Codex).
CLI utilities for preparing Qdrant models and indexing dependency libraries.
Allows using any OpenAI-compatible LLM as the analysis backend for repository exploration and codebase analysis, including token-efficient code analysis, conversation compression, and optional caching.
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., "@CodebaseAgent-MCPAnalyze the main module for performance issues"
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.
CodebaseAgent-MCP
CodebaseAgent-MCP is a token-efficient MCP server for AI coding agents that delegates large codebase analysis to a dedicated OpenAI-compatible LLM, reducing context size, latency, and token costs. Instead of forcing your primary coding assistant to repeatedly scan large codebases, it performs that work separately and returns only the information needed for the current task.
It can run against local models such as Gemma or Qwen, as well as inexpensive OpenAI-compatible cloud providers, reducing both latency and token consumption while keeping the primary assistant focused on reasoning and code generation.
Optional Qdrant integration can cache previous retrieval results today and is planned to evolve into semantic retrieval of code entities (files, classes and functions) from connected codebases.
Why
Modern coding agents repeatedly spend thousands (sometimes millions) of tokens re-reading repositories, dependency sources, and documentation before they can start solving the actual task.
This becomes even more expensive when:
the project is actively evolving;
documentation is incomplete or outdated;
source code must be inspected directly;
each new agent session starts from an empty context.
CodebaseAgent-MCP delegates this exploration to a dedicated analysis model. The primary coding assistant receives only the relevant findings instead of repeatedly processing the entire codebase.
Related MCP server: Workspace Qdrant MCP
How it works
Connect your local or low-cost cloud LLM to CodebaseAgent-MCP.
Connect CodebaseAgent-MCP as an MCP-server to your harness (ClaudeCode, Codex, OpenCode, etc.).
Start your development prompt with the phrase "Use skill
libraries-analysis-skill." to reduce your costs.
Benchmark
Task
task.md - write two small applications with a combined size of approximately 200 lines of code that use the Cengal library (inter-process communication, async multiprocessing app with TUI, async wxPython GUI).
In real-world development, the number of output tokens is also relatively small compared to the amount of project data that must be reread every session and kept in the context window, consuming input tokens. The scale of both the work and the associated costs is simply much larger.
Measurements
(VectorDB caching in CodebaseAgent-MCP was disabled to evaluate performance under the worst possible conditions.)
Tokens spent during the search and analysis stage of the Cengal codebase:
Approach | All Input tok. | Input tok. | Cached Input tok. | Output tok. |
without | 791930 | 684087 | 107843 | 5361 |
With CodebaseAgent-MCP | 416160 | 229003 | 187157 | 13755 |
Estimated costs based on the current token pricing of various models:
Approach | Claude Haiku 4.5 | Claude Sonnet 5 (Sep 1, 2026) | Claude Opus 4.8 | Claude Fable 5 | GPT-5.5 | GPT-5.5-Pro * |
without | 0.89 USD | 2.68 USD | 4.46 USD | 8.93 USD | 3.64 USD | 24.72 USD |
With CodebaseAgent-MCP | 0.37 USD | 1.12 USD | 1.87 USD | 3.74 USD | 1.65 USD | 14.96 USD |
Cost Reduction (×) | 2.4 | 2.39 | 2.39 | 2.39 | 2.2 * | 1.65 |
GPT Pro models do not support cached tokens.
I used a conservative (minimum) estimate for cached tokens. OpenAI dynamically accounts for cached tokens for GPT models (except Pro), meaning significantly more tokens are actually billed as cached. As a result, the real advantage of using CodebaseAgent-MCP is greater than "2.2×" because the proportion of cached tokens is higher when using CodebaseAgent-MCP than without it.
When VectorDB caching (qdrant_* plugins) is enabled in CodebaseAgent-MCP, the savings become even greater.
Harness
The benchmark was conducted using the OpenCode harness because it provides detailed statistics for both the main agent session and all subagent sessions.
LLM
The google/gemma-4-12b-qat model was used on both the OpenCode harness side and the CodebaseAgent-MCP harness side.
Prompts
with__codebase_agent__agents.md
The MCP server for CodebaseAgent-MCP was the only one connected to OpenCode, with agents and skills installed in the project dir.
without__codebase_agent__subagents.md
All MCP servers were subsequently disconnected (disabled) from OpenCode, and no agents or skills remain installed.
The phrase "Spawn subagents." is, of course, a significant advantage for plain OpenCode. I ended up using it out of necessity because, without it, clean OpenCode would consistently fall into an infinite loop: "Conduct research -> write one or two files until the context window is full -> delete part of the conversation history instead of summarizing it -> start over". At the same time, the CodebaseAgent-MCP server connected to OpenCode completes the task successfully even without any installed skills or agents, though it does so slightly less efficiently than with them.
Cached Input
Every provider implements caching differently, and some do not support it at all. I chose a conservative accounting method that produces the minimum possible number of cached tokens to avoid overstating the results. In particular, the actual number of cached tokens with OpenAI would be approximately 1.2-1.5× higher than my calculations because of OpenAI's dynamic caching algorithm. As a result, the advantage of using CodebaseAgent-MCP with GPT-5.5 would likely be comparable to, or even greater than, the savings observed with Anthropic models.
Architecture
ClaudeCode + Opus -> CodebaseAgent-MCP -> OpenAI-compatible LLM (either local or cloud)
|
+-> configured local codebases
+-> built-in tools and plugins
+-> optional Qdrant cache
+-> external MCP plugins (any MCP-servers of your choice)Features
Token-efficient code and dependency analysis for repositories whose files are larger than the connected model's context window.
Automatic conversation-history compression
Optional RAG cache through one of the
qdrant_*built-in plugins.Sandboxed filesystem access scoped to configured library roots.
Pluggable external stdio MCP tools.
Works with local OpenAI-compatible servers such as LM Studio, llama.cpp servers, vLLM-compatible endpoints, or compatible hosted APIs.
Works with cloud OpenAI-compatible servers.
Async background jobs with SQLite persistence of results.
How-To Start
Install
Configure
Connect to your coding agent
Use CodebaseAgent-MCP
Installation
Install
uv: https://docs.astral.sh/uv/getting-started/installation/Initialize and create the CodebaseAgent-MCP configuration via
uvx:
uvx --from codebase-agent-mcp cb-agent-initIt will return the path to your codebase_agent.config.json configuration file.
Feel free to use uvx --from codebase-agent-mcp cb-agent-init at any time to find the location of your configuration file.
Update to latest version
uvx --from codebase-agent-mcp@latest cb-agent-initThis will not affect your config.
Configuration
Technical details and configuration recommendations for local LLMs: docs
Edit codebase_agent.config.json before starting the server.
Minimal config
Define OpenAI-compatible LLM (either local or cloud)
Field | Purpose |
| OpenAI-compatible endpoint. |
| API key sent to the endpoint. Use a placeholder such as |
| Model name exposed by the OpenAI-compatible server. |
| When |
| Reasoning effort value sent with the request. Use |
| Model context window limit in tokens. |
Local repositories, dependency sources, or documentation trees that the harness may analyze.
Field | Purpose |
| Public name used as |
| Enables or disables the library. Disabled libraries are not listed or analyzed. |
| Absolute path to the local directory. The path must exist when enabled. |
| Extra guidance for this codebase, such as preferred APIs, documentation folders, or project conventions. |
Qdrant (Optional)
CodebaseAgent-MCP works as a client to Qdrant: either local or cloud.
qdrant_fastembed, and qdrant_cloud enable the RAG cache. By default, qdrant_fastembed client is installed. Their configuration can contain:
Field | Purpose |
| Embedding model name. Defaults to |
| Keyword arguments passed to |
Before the first use, and after every change to the
"configuration"."model_name"field in theqdrant_*plugin configuration, it is necessary to initialize (download) the model before the next use of the MCP server. The procedure is described below in the "Usage" -> "Qdrant (Optional)" section.
Connection to ClaudeCode/Codex/etc.
Register as MCP-server
Configure your MCP client (ClaudeCode/Codex/OpenCode/Hermes/PiAgent/etc.) to run CodebaseAgent-MCP via
uvx:
{
"mcpServers": {
"codebase-agent-mcp": {
"command": "uvx",
"args": [
"codebase-agent-mcp"
]
}
}
}Install subagents and skills to your harness (ClaudeCode/Codex/etc.)
Go to the root directory of your project and run:
uvx --from codebase-agent-mcp cb-agent-install-skills-to-current-dirAlternatively, you may clone the repository using git clone https://github.com/FI-Mihej/codebase-agent-mcp.git and proceed manually:
ClaudeCode: copy
./codebase_agent/data/integration_to/claude/.claudeto root dir of your project.Codex: copy
./codebase_agent/data/integration_to/codex/.agents,./codebase_agent/data/integration_to/codex/.codexand./codebase_agent/data/integration_to/codex/.codex/config.tomlto root dir of your project.OpenCode: copy
./codebase_agent/data/integration_to/opencode/.opencodeto root dir of your project.Cursor: copy
./codebase_agent/data/integration_to/cursor/.cursorto root dir of your project.Antigravity: copy
./codebase_agent/data/integration_to/antigravity/.agentsto root dir of your project. Antigravity lacks an agent concept, which means the work will be less token-efficient than when using other harnesses. Be sure to enable Implicit Caching to achieve significant savings.Hermes Agent: copy
./codebase_agent/data/integration_to/hermes/skillsto root dir of your project.Pi Coding Agent: 1. install
https://github.com/nicobailon/pi-subagentsor similar solution; 2. copy./codebase_agent/data/integration_to/pi_agent/.pito root dir of your project.
Usage
Start your development prompt with the phrase "Use skill libraries-analysis-skill."
Example prompt: with__codebase_agent__skills.md
Qdrant (Optional)
Prepare models
Before the first run of the CodebaseAgent-MCP with the qdrant_* plugin(s) enabled, and after every change to the "configuration"."model_name" field in the qdrant_* plugin configuration, always run:
uvx --from codebase-agent-mcp cb-agent-ensure-qdrant-modelsIndex dependecy libraries (to be done)
Perform indexing of dependency library codebases to add the key features of individual entities (files, classes, functions) to the RAG storage.
uvx --from codebase-agent-mcp cb-agent-index-dependency-librariesProtecting Against Prompt Injections in Dependency Library Code
Embedding prompt injections into repository code is becoming increasingly widespread. This ranges from repositories maintained by Meta (github.com/facebook/*), where they mainly interfere with coding agents but are otherwise harmless, to genuinely dangerous cases that can lead to credential leaks, Social Security number exposure, financial losses, and other security incidents.
A few simple yet still effective examples:
Prompt injection: github.com/facebook/docusaurus
Result against Claude Code: PR #12105
Post on X by a Meta core developer, where the author celebrates the remarkably high effectiveness of the prompt injections they embedded in
AGENTS.md, code comments, and other locations throughout the repository.
Prompt injection: github.com/ghostty-org/ghostty
The same approach, with similar results.
Real-world prompt injections use millions of effective wording variations, with new ones being created constantly.
Using regular expressions or other primitive techniques to defend against them is ineffective.
Guardrail models. Even the best guardrail models achieve robustness of only around 85%. That means approximately one out of every six attacks succeeds. Is
thatan acceptable level of protection for a production system? See: Evaluating the Robustness of Large Language Model Safety Guardrails Against Adversarial Attacks, Bag of Tricks for Subverting Reasoning-based Safety Guardrails, etc.Naive LLM-based detection. There is now a substantial body of research arguing that using an LLM to detect prompt injections by prompting the same (or a similar) LLM is fundamentally unreliable due to vulnerabilities in the detector itself and unacceptably high false positive and/or false negative rates for production use. See: How Not to Detect Prompt Injections with an LLM (2025), WAInjectBench: Benchmarking Prompt Injection Detections for Web Agents, Formalizing and Benchmarking Prompt Injection Attacks and Defenses, Optimization-based Prompt Injection Attack to LLM-as-a-Judge, etc.
Solution and Tool (to be done)
After adding a new dependency library (that is, adding a new entry to the libraries field in the configuration file), it is recommended to sanitize the dependency library codebases by removing prompt injections from them.
A dedicated tool for this purpose will be released very soon. Stay tuned for updates.
It will be launched similarly to the following:
uvx --from codebase-agent-mcp cb-agent-sanitize-library-codebasesGithub repository
Github repository is a curated public mirror of the project. Active development (including experimental code and private research notes) happens in a private repository; selected snapshots are published here periodically.
Roadmap
Support for the
qdrant_fastembed_gpuplugin.Internal optimizations and an expanded set of tools.
Integration of a content sanitization system for prompt injection protection.
A configuration field for LLM instructions on how to use connected MCP servers.
An internal sub-agent hierarchy for faster LLM operation.
Glama.AI
Cengal
Based on Cengal
Projects using Cengal
text_file_read_and_refactor_mcp - Token-efficient Python stdio MCP server exposing safe text-file search, reading, and refactoring tools. Tools automatically resolve the file BOM and codepage.
InterProcessPyObjects - High-performance package delivers blazing-fast inter-process communication through shared memory, enabling Python objects to be shared across processes with exceptional efficiency.
cengal_app_dir_path_finder - A Python module offering a unified API for easy retrieval of OS-specific application directories, enhancing data management across Windows, Linux, and macOS
cengal_cpu_info - Extended, cached CPU info with consistent output format.
cengal_memory_barriers - Fast cross-platform memory barriers for Python.
Bensbach - decompiler from Unreal Engine 3 bytecode to a Lisp-like script and compiler back to Unreal Engine 3 bytecode. Made for a game modding purposes
Realistic-Damage-Model-mod-for-Long-War - Mod for both the original XCOM:EW and the mod Long War. Was made with a Bensbach, which was made with Cengal
License
Copyright © 2026 ButenkoMS. All rights reserved.
Licensed under the Apache License, Version 2.0.
Maintenance
Related MCP Servers
- AlicenseBqualityDmaintenanceProvides on-demand access to AOSP and Jetpack source code to help AI understand Android framework internals. It features a hybrid architecture using Tree-sitter and LSP for precise code extraction, cross-file navigation, and local source indexing.Last updated11100Apache 2.0
- AlicenseAqualityBmaintenanceProject-scoped semantic workspace memory for AI coding assistants. Watches your project files and auto-indexes code and docs into Qdrant using tree-sitter semantic chunking and hybrid search (dense + sparse + RRF)Last updated63Apache 2.0
- AlicenseBqualityBmaintenanceAn MCP server that provides structural codebase indexing and surgical query tools to drastically reduce token usage through symbol-level searches and transitive impact analysis. It supports multiple languages and integrates with git to help AI agents understand code dependencies and the impact of changes in sub-millisecond time.Last updated691,097MIT
- AlicenseAqualityBmaintenanceAST-targeted code editing MCP server with 28 surgical tools for structural edits across 11 languages. Built on tree-sitter, replaces brittle search/replace with byte-correct edits keyed by symbol names.Last updated28MIT
Related MCP Connectors
Driflyte MCP server which lets AI assistants query topic-specific knowledge from web and GitHub.
Local-first RAG engine with MCP server for AI agent integration.
An MCP server that gives your AI access to the source code and docs of all public github repos
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/FI-Mihej/codebase-agent-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server