You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+50-8Lines changed: 50 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,7 @@ cd your-project
55
55
codegraph build
56
56
```
57
57
58
-
That's it. No config files, no Docker, no JVM, no API keys, no accounts. The graph is ready to query. Add `codegraph mcp` to your AI agent's config and it has full access to your dependency graph through 24 MCP tools (25 in multi-repo mode).
58
+
That's it. No config files, no Docker, no JVM, no API keys, no accounts. The graph is ready to query. Add `codegraph mcp` to your AI agent's config and it has full access to your dependency graph through 26 MCP tools (27 in multi-repo mode).
59
59
60
60
### Why it matters
61
61
@@ -69,13 +69,16 @@ That's it. No config files, no Docker, no JVM, no API keys, no accounts. The gra
69
69
70
70
### Feature comparison
71
71
72
-
<sub>Comparison last verified: February 2026</sub>
@@ -97,10 +100,10 @@ That's it. No config files, no Docker, no JVM, no API keys, no accounts. The gra
97
100
|**🔓**|**Zero-cost core, LLM-enhanced when you want**| Full graph analysis with no API keys, no accounts, no cost. Optionally bring your own LLM provider — your code only goes where you choose |
98
101
|**🔬**|**Function-level, not just files**| Traces `handleAuth()` → `validateToken()` → `decryptJWT()` and shows 14 callers across 9 files break if `decryptJWT` changes |
99
102
|**🏷️**|**Role classification**| Every symbol auto-tagged as `entry`/`core`/`utility`/`adapter`/`dead`/`leaf` — agents instantly know what they're looking at |
100
-
|**🤖**|**Built for AI agents**|24-tool [MCP server](https://modelcontextprotocol.io/) — AI assistants query your graph directly. Single-repo by default |
103
+
|**🤖**|**Built for AI agents**|26-tool [MCP server](https://modelcontextprotocol.io/) — AI assistants query your graph directly. Single-repo by default |
101
104
|**🌐**|**Multi-language, one CLI**| JS/TS + Python + Go + Rust + Java + C# + PHP + Ruby + HCL in a single graph |
102
105
|**💥**|**Git diff impact**|`codegraph diff-impact` shows changed functions, their callers, and full blast radius — enriched with historically coupled files from git co-change analysis. Ships with a GitHub Actions workflow |
103
-
|**🧠**|**Semantic search**|Local embeddings by default, LLM-powered when opted in — multi-query with RRF ranking via `"auth; token; JWT"`|
106
+
|**🧠**|**Hybrid search**|BM25 keyword + semantic embeddings fused via RRF — `hybrid` (default), `semantic`, or `keyword` mode; multi-query via `"auth; token; JWT"`|
104
107
105
108
---
106
109
@@ -144,7 +147,7 @@ After modifying code:
144
147
Or connect directly via MCP:
145
148
146
149
```bash
147
-
codegraph mcp #24-tool MCP server — AI queries the graph directly
150
+
codegraph mcp #26-tool MCP server — AI queries the graph directly
148
151
```
149
152
150
153
Full agent setup: [AI Agent Guide](docs/guides/ai-agent-guide.md)·[CLAUDE.md template](docs/guides/ai-agent-guide.md#claudemd-template)
0 commit comments