Skip to main content

An autonomous MCP agent that provides token-efficient code analysis, documentation retrieval, and implementation guidance for large library repositories using a dedicated OpenAI-compatible LLM.

Project description

GitHub tag (with filter) Static Badge

Static Badge Static Badge

GitHub License Static Badge

CodebaseAgent-MCP

CodebaseAgent-MCP is an MCP server that delegates repository analysis to a dedicated OpenAI-compatible LLM. 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.

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.

How it works

  1. Connect your local or low-cost cloud LLM to CodebaseAgent-MCP.
  2. Connect CodebaseAgent-MCP as an MCP-server to your harness (ClaudeCode, Codex, OpenCode, etc.).
  3. 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

  1. Install
  2. Configure
  3. Connect to your coding agent
  4. Use CodebaseAgent-MCP

Installation

  1. Install uv: https://docs.astral.sh/uv/getting-started/installation/

  2. Initialize and create the CodebaseAgent-MCP configuration via uvx:

uvx --from codebase-agent-mcp cb-agent-init

It 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.

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
base_url OpenAI-compatible endpoint. /v1 is appended automatically when omitted.
api_key API key sent to the endpoint. Use a placeholder such as [EMPTY] for local servers that do not require a key.
model Model name exposed by the OpenAI-compatible server.
reasoning_allowed When false, the client sends provider additional hints that disable thinking/reasoning where supported.
reasoning_effort Reasoning effort value sent with the request. Use none for models/endpoints that support it.
max_tokens Model context window limit in tokens.

Local repositories, dependency sources, or documentation trees that the harness may analyze.

Field Purpose
name Public name used as library_name in MCP tool calls. Names must be unique.
allowed Enables or disables the library. Disabled libraries are not listed or analyzed.
path Absolute path to the local directory. The path must exist when enabled.
instructions 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
model_name Embedding model name. Defaults to sentence-transformers/all-MiniLM-L6-v2 when omitted.
init Keyword arguments passed to qdrant_client.QdrantClient, such as url, api_key, or cloud_inference.

Before the first use, and after every change to the "configuration"."model_name" field in the qdrant_* 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

  1. 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.)

  • ClaudeCode: copy ./integration_to/claude/.claude to root dir of your project.
  • Codex: copy ./integration_to/codex/.agents, ./integration_to/codex/.codex and ./integration_to/codex/.codex/config.toml to root dir of your project.
  • OpenCode: copy ./integration_to/opencode/.opencode to root dir of your project.
  • Cursor: copy ./integration_to/cursor/.cursor to root dir of your project.
  • Antigravity: copy ./integration_to/antigravity/.agents to 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 ./integration_to/hermes/skills to root dir of your project.
  • Pi Coding Agent: 1. install https://github.com/nicobailon/pi-subagents or similar solution; 2. copy ./integration_to/pi_agent/.pi to 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-models

Index 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-libraries

Protecting 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:

Real-world prompt injections use millions of effective wording variations, with new ones being created constantly.

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-codebases

Github 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_gpu plugin.
  • 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.

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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

codebase_agent_mcp-1.27.2.tar.gz (49.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

codebase_agent_mcp-1.27.2-py3-none-any.whl (71.5 kB view details)

Uploaded Python 3

File details

Details for the file codebase_agent_mcp-1.27.2.tar.gz.

File metadata

  • Download URL: codebase_agent_mcp-1.27.2.tar.gz
  • Upload date:
  • Size: 49.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for codebase_agent_mcp-1.27.2.tar.gz
Algorithm Hash digest
SHA256 be9f32a08a2823981371023f5d23c0215d52bdacd15a70a79fcedbb0a605f76f
MD5 df5a8d3d5b22ce1e22aecef5304f29ed
BLAKE2b-256 e448f697aa1340526b44c7c2c7a71b928525e7dcafc8cda46f0e841a50bd1f15

See more details on using hashes here.

File details

Details for the file codebase_agent_mcp-1.27.2-py3-none-any.whl.

File metadata

File hashes

Hashes for codebase_agent_mcp-1.27.2-py3-none-any.whl
Algorithm Hash digest
SHA256 ca286493cd19bd408307bd10bc42cbc30769106aa036ecbec7fd87cb80975d66
MD5 900d3bffe52f6dc3e5b05747faaa8858
BLAKE2b-256 a551846fa5de800e6aec3ac73ad1bec60a88586659d9aa2e361e0ac794a978e3

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page