Skip to content

Commit 41ed4ca

Browse files
committed
fix(docs): correct MCP tool count in README (24/25 → 26/27)
BASE_TOOLS in mcp.js contains 26 tools, plus list_repos for multi-repo mode (27 total). The README incorrectly stated 24/25 in five locations.
1 parent 5d3d346 commit 41ed4ca

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ cd your-project
5555
codegraph build
5656
```
5757

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).
5959

6060
### Why it matters
6161

@@ -97,7 +97,7 @@ That's it. No config files, no Docker, no JVM, no API keys, no accounts. The gra
9797
| **🔓** | **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 |
9898
| **🔬** | **Function-level, not just files** | Traces `handleAuth()``validateToken()``decryptJWT()` and shows 14 callers across 9 files break if `decryptJWT` changes |
9999
| **🏷️** | **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 |
100+
| **🤖** | **Built for AI agents** | 26-tool [MCP server](https://modelcontextprotocol.io/) — AI assistants query your graph directly. Single-repo by default |
101101
| **🌐** | **Multi-language, one CLI** | JS/TS + Python + Go + Rust + Java + C# + PHP + Ruby + HCL in a single graph |
102102
| **💥** | **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 |
103103
| **🧠** | **Semantic search** | Local embeddings by default, LLM-powered when opted in — multi-query with RRF ranking via `"auth; token; JWT"` |
@@ -144,7 +144,7 @@ After modifying code:
144144
Or connect directly via MCP:
145145

146146
```bash
147-
codegraph mcp # 24-tool MCP server — AI queries the graph directly
147+
codegraph mcp # 26-tool MCP server — AI queries the graph directly
148148
```
149149

150150
Full agent setup: [AI Agent Guide](docs/guides/ai-agent-guide.md) · [CLAUDE.md template](docs/guides/ai-agent-guide.md#claudemd-template)
@@ -170,7 +170,7 @@ Full agent setup: [AI Agent Guide](docs/guides/ai-agent-guide.md) · [CLAU
170170
| 📤 | **Export** | DOT (Graphviz), Mermaid, and JSON graph export |
171171
| 🧠 | **Semantic search** | Embeddings-powered natural language search with multi-query RRF ranking |
172172
| 👀 | **Watch mode** | Incrementally update the graph as files change |
173-
| 🤖 | **MCP server** | 24-tool MCP server for AI assistants; single-repo by default, opt-in multi-repo |
173+
| 🤖 | **MCP server** | 26-tool MCP server for AI assistants; single-repo by default, opt-in multi-repo |
174174
|| **Always fresh** | Three-tier incremental detection — sub-second rebuilds even on large codebases |
175175
| 🧮 | **Complexity metrics** | Cognitive, cyclomatic, nesting depth, Halstead, and Maintainability Index per function |
176176
| 🏘️ | **Community detection** | Louvain clustering to discover natural module boundaries and architectural drift |
@@ -452,7 +452,7 @@ Optional: `@huggingface/transformers` (semantic search), `@modelcontextprotocol/
452452

453453
### MCP Server
454454

455-
Codegraph includes a built-in [Model Context Protocol](https://modelcontextprotocol.io/) server with 24 tools (25 in multi-repo mode), so AI assistants can query your dependency graph directly:
455+
Codegraph includes a built-in [Model Context Protocol](https://modelcontextprotocol.io/) server with 26 tools (27 in multi-repo mode), so AI assistants can query your dependency graph directly:
456456

457457
```bash
458458
codegraph mcp # Single-repo mode (default) — only local project

0 commit comments

Comments
 (0)