Repo Interrogator
A local-first MCP server that enables AI tools to safely inspect and search code repositories, providing indexing, deterministic BM25 search, code outlining, and context bundles without code modification.
README
Repo Interrogator
Repo Interrogator is a local-first, deterministic MCP server that helps AI tools inspect one code repository safely.
It is for repository interrogation, not code modification.
What it does:
- indexes files inside one
repo_root - runs deterministic BM25 search
- outlines code structure via pluggable language adapters
- builds context bundles with citations
- writes sanitized audit logs
What it does not do:
- no LLM calls in v1
- no code writes or patching
- no multi-repo routing
- no HTTP/SSE transport in v1
Supported Environments
- Python:
>=3.11 - Tested in this project: Linux and WSL paths, with explicit Windows path normalization tests
- Expected to run on: Linux, macOS, Windows (with Python 3.11+)
Quick Start
- Clone this repository and enter it:
git clone https://github.com/taggedzi/Repo-Interrogator
cd repomap
- Install (end-user style):
python -m pip install .
This installs the console command repo-mcp.
- Run against a local repository:
repo-mcp --repo-root /absolute/path/to/target/repo
The server uses STDIO. It waits for newline-delimited JSON requests and writes newline-delimited JSON responses.
- Verify it responds:
printf '%s\n' '{"id":"req-1","method":"repo.status","params":{}}' \
| repo-mcp --repo-root /absolute/path/to/target/repo
You should get a JSON envelope with keys like:
request_idokresultwarningsblocked
Developer Quick Start
python -m venv .venv
source .venv/bin/activate
python -m pip install -e .
python -m pip install ruff mypy pytest build
Run checks:
python -m ruff format .
python -m ruff check .
python -m mypy src
python -m pytest -q
Tool Surface (Current)
repo.statusrepo.list_filesrepo.open_filerepo.outlinerepo.searchrepo.referencesrepo.build_context_bundlerepo.refresh_indexrepo.audit_log
Language Adapter Support
repo.outline currently supports these adapters:
- Python:
python(AST-based) - TypeScript/JavaScript:
ts_js_lexical(lexical) - Java:
java_lexical(lexical) - Go:
go_lexical(lexical) - Rust:
rust_lexical(lexical) - C++:
cpp_lexical(lexical) - C#:
csharp_lexical(lexical) - Fallback:
lexical(empty structural outline for unsupported files)
Important limits:
- Non-Python adapters are lexical. They are deterministic and fast, but conservative.
- Macro/generated code and advanced language features can be partially represented.
- Search, references, and context bundle coverage depend on indexed extensions/excludes.
- Start from
examples/repo_mcp.tomlfor stack-aware include/exclude defaults and override guidance.
Documentation
- Installation:
docs/INSTALL.md - Usage and request/response examples:
docs/USAGE.md - Configuration and limits:
docs/CONFIG.md - AI client integration (MCP over STDIO):
docs/AI_INTEGRATION.md - Troubleshooting:
docs/TROUBLESHOOTING.md - Issue labels and triage workflow:
docs/TRIAGE.md - Security policy and vulnerability reporting:
SECURITY.md - Security model and blocked behavior:
docs/SECURITY.md - Release process:
docs/release.md
Docs Verification Checklist
Run these commands to validate docs examples against the current codebase:
python -m ruff format .
python -m ruff check .
python -m mypy src
python -m pytest -q
# quick server smoke
printf '%s\n' '{"id":"req-docs-1","method":"repo.status","params":{}}' \
| python -m repo_mcp.server --repo-root .
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.