codebase-synapse

codebase-synapse

An MCP server that indexes codebases into a local knowledge graph, providing 52 AI tools for semantic search, call-graph traversal, git archaeology, and impact analysis to give AI agents deep understanding of code.

Category
Visit Server

README

<div align="center">

🧠 Codebase Synapse

Give your AI agent a deep understanding of your entire codebase.

An MCP server that indexes your codebase into a local knowledge graph with 52 AI tools β€” semantic search, call-graph traversal, git archaeology, blast-radius analysis, and more.

<br/>

<img src="docs/assets/hero-banner.png" alt="Codebase Synapse β€” Knowledge graph visualization" width="700"/>

<br/>

Works with Claude Code Β· Cursor Β· Windsurf Β· Zed Β· Any MCP client

CI npm version License: Apache-2.0 MCP Registry

</div>


The Problem

AI coding agents (Claude, Cursor, etc.) are powerful β€” but they work with limited context. They can only see the files you open or feed them. Ask about call chains, architectural patterns, or blast-radius impact, and they guess.

Codebase Synapse fixes this. It indexes your entire repo into a local knowledge graph stored in SQLite, giving your AI agent real answers backed by structural analysis β€” not hallucinations.

<div align="center"> <img src="docs/assets/demo-terminal.png" alt="Codebase Synapse demo β€” indexing and impact analysis" width="650"/> </div>

How it works

graph LR
    A["πŸ“ Your Codebase"] -->|Tree-sitter| B["🧩 Parser"]
    B -->|Symbols & Edges| C["πŸ•ΈοΈ Knowledge Graph"]
    C -->|SQLite| D["πŸ’Ύ Local DB"]
    D -->|52 MCP Tools| E["πŸ€– AI Agent"]
    
    style A fill:#1a1b26,stroke:#7aa2f7,color:#c0caf5
    style B fill:#1a1b26,stroke:#bb9af7,color:#c0caf5
    style C fill:#1a1b26,stroke:#9ece6a,color:#c0caf5
    style D fill:#1a1b26,stroke:#e0af68,color:#c0caf5
    style E fill:#1a1b26,stroke:#f7768e,color:#c0caf5

⚑ Quick Start

1. Index your project (CLI, Zoekt-style)

codebase-synapse index /path/to/your/repo

Indexing runs as a separate CLI command and writes into ~/.codebase-synapse/codebase.db. The first index is the slow one; re-running it only re-indexes changed files. The MCP server never indexes β€” it only reads the pre-built index.

2. Start the MCP server

npx codebase-synapse

That's it. No Docker. No database setup. No cloud. The server starts via stdio and serves the pre-built index to your MCP client.

Configure your client

<details> <summary><b>Claude Code / Claude Desktop</b></summary>

Add to your claude_desktop_config.json or mcp_servers.json:

{
  "mcpServers": {
    "codebase-synapse": {
      "command": "npx",
      "args": ["-y", "codebase-synapse"]
    }
  }
}

</details>

<details> <summary><b>Cursor</b></summary>

Add to your .cursor/mcp.json:

{
  "mcpServers": {
    "codebase-synapse": {
      "command": "npx",
      "args": ["-y", "codebase-synapse"]
    }
  }
}

</details>

<details> <summary><b>Other MCP clients</b></summary>

Any MCP client that supports stdio transport works. Just point it at:

npx -y codebase-synapse

</details>

✨ What It Does

πŸ” Search & Discovery

Tool Description
semantic_search Vector similarity search using local embeddings (all-MiniLM-L6-v2)
search_code Full-text search across code (FTS5 + BM25 ranking)
search_symbol Find functions, classes, types by name or pattern
hybrid_search Combined semantic + lexical search with RRF fusion
find_similar Find structurally similar code using MinHash + LSH
find_symbol_everywhere Locate a symbol across all indexed projects

πŸ•ΈοΈ Knowledge Graph

Tool Description
get_callers / get_callees Navigate the call graph in either direction
get_imports / get_dependents Trace dependency chains
impact_analysis Compute blast radius before editing a file
find_path Find the shortest connection between two symbols
find_dead_code Detect unreachable functions and unused exports
get_pagerank Identify the most critical nodes in your architecture
query_graph Run Cypher-like queries against the knowledge graph

πŸ—οΈ Architecture

Tool Description
get_architecture Full project architecture overview (languages, entry points, hotspots)
get_file_structure Directory tree with symbol annotations
project_overview High-level summary with key metrics
get_route_map Extract HTTP routes and their handler mappings
suggest_boundaries Detect module boundaries via Leiden clustering
check_boundaries Validate cross-module dependencies against defined boundaries
get_clusters Community detection across the codebase

πŸ”¬ Git Archaeology

Tool Description
git_archaeology Deep history analysis of a file (authors, churn, evolution)
get_hotspots Files with highest complexity Γ— change frequency
detect_change_coupling Files that always change together
get_recent_semantic_changes Semantically meaningful recent changes
index_git_history Build temporal analysis from git log

🧠 Memory & Context

Tool Description
memory_store / memory_search / memory_list Persistent notes, facts, and decisions across sessions
session_remember / session_recall Short-term memory within a session
get_context Budgeted context preparation for AI agents
get_edit_context Focused context for a specific file edit
get_working_set Recently accessed and modified files
manage_adr Architecture Decision Records management

πŸ›‘οΈ Codebase Guard

Included as a bonus: codebase-guard is a PreToolUse hook for Claude Code that blocks writes to high-impact files until the agent runs impact_analysis first.

It uses PageRank scores and blast-radius data from the knowledge graph to identify architectural hubs. No more accidental edits to core files.

πŸ”§ Technical Details

Language Rust (compiled native binary)
Transport MCP stdio (JSON-RPC)
Storage SQLite (WAL mode, zero config)
Embeddings all-MiniLM-L6-v2 via Candle (offline, local, lazy-loaded)
Parsing Tree-sitter (10 languages)
Distribution npm with prebuilt binaries (Windows, macOS, Linux Γ— x64, arm64)

Supported Languages

Rust Β· Python Β· TypeScript Β· JavaScript Β· Go Β· Java Β· C# Β· PHP Β· C Β· C++

Architecture

src/
β”œβ”€β”€ parser/       # Tree-sitter parsing & entity extraction
β”œβ”€β”€ graph/        # Knowledge graph, PageRank, Leiden clustering
β”œβ”€β”€ indexer/      # Repository indexing pipeline
β”œβ”€β”€ search/       # BM25 full-text + vector cosine + hybrid RRF
β”œβ”€β”€ embedding/    # Candle-based local embeddings (feature-gated)
β”œβ”€β”€ memory/       # Persistent & session memory stores
β”œβ”€β”€ mcp/          # MCP protocol transport + 52 tool handlers
β”œβ”€β”€ git/          # Git archaeology, intent classification, hotspots
β”œβ”€β”€ context/      # Budgeted context preparation for AI
β”œβ”€β”€ cypher/       # Nom-based Cypher parser β†’ SQL CTE planner
β”œβ”€β”€ similarity/   # MinHash + LSH structural similarity
β”œβ”€β”€ semantic/     # Multi-signal scoring (tokens, directory, AST)
└── cli/          # Interactive TUI installer + artifact export/import

🀝 Contributing

Contributions are welcome! The project uses standard Rust tooling:

# Run tests
cargo test

# Lint
cargo clippy -- -D warnings

# Format
cargo fmt --all

πŸ“„ License

Apache-2.0

Recommended Servers

playwright-mcp

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.

Official
Featured
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

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.

Official
Featured
TypeScript
Kagi MCP Server

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.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

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.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured