ChunkHound
ChunkHound is a codebase intelligence server that lets you search and understand code using pattern matching, semantic similarity, and git history analysis.
Regex Search: Find known symbols, identifiers, imports, or string literals using exact pattern matching (e.g.,
def authenticate,class.*Handler).Semantic Search: Find code by meaning using natural language queries and embedding similarity — useful when exact identifiers are unknown (e.g., "retry logic", "database connection pooling").
Scoped Search: Restrict searches to a specific subdirectory (e.g.,
src/auth) to narrow results.Git History Search: Search code changes using a specific commit hash, a revision range (e.g.,
v1.0..v2.0), or a shorthand for the last N commits.Vector Source Control: When using git inputs, control whether to search only changed code (
diff), merge diff and database results (both), or search the full index ignoring git input (db).Paginated Results: Browse large result sets with configurable page size and offset.
Daemon Status Monitoring: Check daemon health, initial indexing completion, query readiness, and scan progress to diagnose system behavior.
Search results return structurally-parsed code chunks (e.g., functions or classes) along with file paths and line ranges.
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., "@ChunkHoundExplain how the authentication flow interacts with the session management logic."
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.
Requirements
Python 3.10+
uv — install via
curl -LsSf https://astral.sh/uv/install.sh | shAPI keys (optional — regex search works without any):
Related MCP server: SRC (Structured Repo Context)
AI writes code blind
Agents can generate code, but they still miss the context that makes software safe to change: how behavior flows across files, what changed across a branch or release, and which external constraints matter.
Reviewers, support, and product teams hit the same wall when large PRs, merge conflicts, bugs, and release notes need implementation-backed explanation instead of guesses.
ChunkHound turns current code, git history, and technical web research into cited context before anyone edits, reviews, debugs, or explains software.
Deep understanding for four context-heavy jobs
ChunkHound applies codebase understanding to the workflows where missing context hurts most.
Research before editing
Give coding agents grounded architecture context, relevant files, recent changes, and external constraints before they write code.
Understand large PRs and releases
Turn branch diffs, commit ranges, tags, and specific commits into cited engineering briefs for review, release notes, and changelog drafts.
Trace bugs and incidents
Turn symptoms, stack traces, and customer reports into likely code paths, recent changes, and external constraints.
Reconcile code with external docs
Pinpoint the technical docs, APIs, issues, and articles your implementation depends on, then connect that external evidence to local code research.
What you can ask
Ground an agent before edits
chunkhound research "How does authentication work?"
chunkhound search "JWT refresh token validation"
chunkhound research "What changed in auth recently?" --last-n 20Understand a large PR or release
chunkhound research "Summarize the behavior changes on this branch for reviewers" --commit-range main..HEAD
chunkhound research "Draft changelog bullets for billing since v2.4" --commit-range v2.4..HEAD
chunkhound search "database migration" --commit-hash abc1234Get context before resolving conflicts
chunkhound research "Why did auth session handling change on each side?" --commit-range main..feature/auth
chunkhound search "session refresh conflict" --last-n 50Trace a bug with external constraints
chunkhound research "why would webhook retries fail?"
chunkhound research "what changed in webhook handling this week?" --last-n 30
chunkhound websearch "Stripe webhook retry schedule"Explain product behavior
chunkhound research "What happens when a user cancels a subscription?"
chunkhound research "What changed in billing since v2.4?" --commit-range v2.4..HEADWhat powers deep understanding
Semantic code search — find relevant code by meaning, not only exact text
Cited code research — explain behavior across files with source citations
Git history research — ask by last N commits, commit hash, tag, branch, or range to understand large PRs and releases
Pinpoint web research — bring cited external docs, APIs, issues, and articles into the same workflow as local code research
Autodoc — generate shareable docs from code-backed research
Local-first indexing — keep code search and indexing under your control
Python, JavaScript, TypeScript, Java, Go, Rust, C/C++, and more via Tree-sitter
Install
uv tool install chunkhoundTry it
chunkhound index .
chunkhound research "How does authentication work?"Index once, ask a real architecture question, and get a grounded answer with citations. Regex search works without providers. Semantic search requires an embedding provider. Deep research requires an LLM provider and an embedding provider with reranking support; web research uses the same provider stack. Choose local providers for zero-code-egress setups.
For a full configurable setup, create .chunkhound.json in your project root:
{
"embedding": { "provider": "voyageai", "api_key": "your-key" },
"llm": { "provider": "claude-code-cli" }
}For editor integration, all provider options, and advanced configuration:
→ chunkhound.ai/docs/getting-started
Search git history
In addition to searching your indexed codebase, ChunkHound can search code changes across git history — useful for understanding what changed in a PR, a release, or since a specific commit.
# Last N commits
chunkhound search "authentication changes" --last-n 20
# Changes introduced by a specific commit
chunkhound search "database migration" --commit-hash abc1234
# Custom git range
chunkhound search "API changes" --commit-range v2.0..HEAD
# Deep research over recent changes
chunkhound research "what changed in the auth module?" --last-n 50
--vector-sourcecontrols scope:diff(default, changed code only),both(merges diff + DB),db(ignore diff).
Good fit
ChunkHound is especially useful for:
large repos and monorepos
multi-language codebases
legacy systems
local-only or security-sensitive environments
engineering teams that want agents, support, and product questions grounded in the same code index
Community
ChunkHound is MIT licensed, open source, and community built.
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Appeared in Searches
Latest Blog Posts
- 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/chunkhound/chunkhound'
If you have feedback or need assistance with the MCP directory API, please join our Discord server