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
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# code-context-graph
2
2
3
-
Local code analysis tool that parses codebases via Tree-sitter into a knowledge graph. Supports 12 languages, 35 MCP tools, and custom annotation search.
3
+
Local code analysis tool that parses codebases via Tree-sitter into a knowledge graph. Supports 12 languages, 33 MCP tools, and custom annotation search.
4
4
5
5
CCG is built primarily for GPT, Claude, Codex, and other LLM-based coding agents. It acts as local or self-hosted context infrastructure: agents can search code by intent, inspect call graphs, trace impact, retrieve docs, and keep responses bounded instead of reading entire repositories into context.
6
6
@@ -11,7 +11,7 @@ Inspired by [code-review-graph](https://github.com/tirth8205/code-review-graph)
-**35 MCP tools**: parse, search, impact analysis, flow tracing, dead code detection, postprocess operations, namespace file management, and more
14
+
-**33 MCP tools**: parse, search, impact analysis, flow tracing, dead code detection, postprocess operations, namespace file management, and more
15
15
-**RAG-first code exploration**: generated docs + community structure let LLM agents answer natural-language questions before drilling into exact graph nodes
16
16
-**Browser Wiki UI**: `ccg-server` can serve generated docs, tree search, PageIndex-style retrieval, Context Tray copying, and an Obsidian-style graph viewer
17
17
-**Custom annotations**: `@intent`, `@domainRule`, `@sideEffect`, `@mutates`, `@index` — search code by business context ([details](guide/annotations.md))
@@ -253,7 +253,7 @@ server can also expose `/wiki` when `--wiki-dir` is configured:
253
253
```
254
254
255
255
MCP-capable clients such as Codex or Claude Code can connect and get access to
256
-
35 MCP tools. See [MCP Tools Reference](guide/mcp-tools.md) for the full list.
256
+
33 MCP tools. See [MCP Tools Reference](guide/mcp-tools.md) for the full list.
257
257
258
258
## Architecture
259
259
@@ -281,7 +281,7 @@ See [Architecture Details](guide/architecture.md) for component breakdown and DB
281
281
|[CLI Reference](guide/cli-reference.md)| All commands, flags, and config file (`.ccg.yaml`) |
282
282
|[Eval](guide/eval.md)| Parser/search quality evaluation, golden corpus, and metrics |
283
283
|[Lint](guide/lint.md)| Detailed `ccg lint` category reference, interpretation guide, and CI usage |
|`ccg serve --otel-endpoint <url>`| Enable OTLP HTTP trace export to the given full endpoint URL (for example `http://collector:4318/v1/traces`); when unset, CCG still creates SDK spans locally but does not export them |
|`ccg-server --wiki-dir <dir>`| Enable the browser Wiki UI at `/wiki` using a built React dist directory; `/wiki/api/*` uses the same bearer token as `/mcp`|
0 commit comments