Back to Apps

adaptive-codegraph
Supports UIby fanaperana
Language-agnostic code graph indexer and search engine using tree-sitter queries for structural codebase understanding.
0 stars
Works in:VS Code Copilot
Exposes:Tools
What it does
adaptive-codegraph builds a structural understanding of codebases by parsing source code into syntax trees and extracting symbols and relationships. It provides an MCP server for AI assistants to perform complex structural queries that exceed the capabilities of simple text search.
Tools
search: BM25 full-text search over symbolssemantic_search: Vector similarity search using fastembedfind_symbol: Look up symbols by name substringget_symbol: Retrieve detailed symbol information by IDfind_callers: Identify all functions that call a specific symbolfind_callees: Identify all functions called by a specific symbolexpand_neighborhood: Perform a BFS subgraph traversal around a symbolindex: Trigger a full index rebuild
Installation
Add to your .vscode/mcp.json:
{
"servers": {
"adaptive-codegraph": {
"type": "stdio",
"command": "adaptive-codegraph-mcp",
"args": ["--base", "${workspaceFolder}"]
}
}
}
Supported hosts
- VS Code Copilot
- Claude Desktop
Quick install
git clone https://github.com/Fanaperana/adaptive-codegraph.git && cd adaptive-codegraph && ./install.shInformation
- Pricing
- free
- Published
- 6/30/2026
- stars
- 0
Categories
Choose your AI client and follow the steps below.
VS Code Copilot
{
"servers": {
"adaptive-codegraph": {
"type": "stdio",
"command": "adaptive-codegraph-mcp",
"args": ["--base", "${workspaceFolder}"]
}
}
}





