Local code graph for TypeScript, Python and Swift: who calls this, what breaks if I change it.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
A local code-context engine for AI coding agents. Sonde indexes a TypeScript,
Python, or Swift repository into a symbol-level graph in SQLite and exposes
three MCP tools β find_symbols, query_graph, and get_impact_radius β so an
agent can answer who calls this, what breaks if I change it, and which
tests relate to it in one call instead of a search loop.
The honest claim is not "finds what grep cannot". A competent agentic search loop finds the same structural evidence β we measured it, on a real 19,409-line repository, and it scored 1.000 recall on every task.
The claim is the same answers for a fraction of the cost, inside a budget:
| On real production TypeScript | Sonde | Agentic search |
|---|---|---|
| Recall on structural tasks | 1.00 | 1.00 |
| Tool calls | 1.0 | 8.0 |
| Context tokens | 1,262 | 3,621 |
| Latency | 263 ms | 38,602 ms |
| Runs that blew the token budget | 0 of 6 | 3 of 6 |
Sonde matches the baseline's answers on every structural task while using ~3Γ less context, 8Γ fewer calls, and ~147Γ less wall-clock time β and it never exceeds the caller's token budget, because the packer truncates to it by construction. That is the trade being offered.
Where it loses. Behavioural queries with no shared vocabulary β "where is the retry backoff decided?" β score 0.00. Local semantic retrieval was built and measured and does not fix it (see the design doc Β§2.2); the capability is therefore not claimed. If your questions are mostly of that shape, an agentic search loop is the better tool today.
Numbers are reproducible: npm run bench:fixture && npm run bench:large.
Full results in BENCHMARK-LARGE.md and
BENCHMARK.md.
sonde init indexes the repository and registers sonde as an MCP server in
this project's .mcp.json, asking before it writes anything (skip the prompt
with sonde init --yes). It never touches an .mcp.json it can't safely merge
into β an existing sonde entry that differs from what init would write is
left alone and reported, not overwritten.
For Python repositories, use sonde init --resolve; the default tree-sitter
tier did not pass the project's placement gate for structural queries.
Equivalent by hand, if you'd rather see every step:
No account or hosted service is required.
sonde doc writes an ARCHITECTURE.md describing the
repository's modules, how they depend on each other, and what each one exposes β
generated from the graph, so it reports what the code actually does rather than
what someone remembered.
It is meant to be committed and regenerated, not hand-edited. Regeneration is
byte-identical when nothing changed, so it does not churn your diffs; when two
branches both regenerate it, resolve the conflict by running sonde doc again
rather than merging by hand. It refuses to overwrite an ARCHITECTURE.md it did
not generate.
Three things it deliberately does not do:
symbols.ts, parser.ts and references.ts,
which manufactured 62 heuristic "references" between modules that never import
each other β once the second-heaviest arrow in the diagram.--module has the rest. A diagram containing every dependency is
unreadable and therefore shows nothing.sonde status shows the same
drift and tier distribution carried by tool response envelopes.COMPILER (resolved
exactly by a bundled type checker under --resolve: the TypeScript compiler
for TypeScript, pyright for Python), LEXICAL
(resolved through an import binding or lexical scope), HEURISTIC (member
access or another relationship requiring type inference), EXTERNAL (target
outside the indexed repository), or UNRESOLVED (genuinely unplaceable,
with a reason).EXTERNAL or
UNRESOLVED β never a guessed target and never a silently dropped reference.Sonde measures its zero-setup tree-sitter path against the TypeScript
compiler on a pinned fixture and publishes the result, unflattering numbers
included (spec Β§12). COMPILER edges use that compiler directly, so comparing
them back to the same authority would not be an independent accuracy test.
Generated: 2026-08-23T18:16:41.557Z TypeScript: 5.9.3 (bundled; repository TypeScript is never loaded)
What these numbers cover. The oracle measures the tree-sitter resolution
path β the zero-setup default, and the only tier whose accuracy is in question.
COMPILER-tier edges come from the TypeScript compiler itself, so scoring them
against the same compiler would measure nothing; they are exact by construction
and excluded from these figures. Run sonde index --resolve to produce them.
The oracle is filtered to in-repo targets; node_modules and .d.ts
declarations are excluded. Type-only references, JSX intrinsics, export =,
decorators, and declaration merging are known expected divergences (spec Β§10).
Tier rows compare that tier alone with the complete oracle, making each tier's
independent contribution visible; ALL is the combined result.
These divergences are structural, so reading a precision figure as "how often Sonde is wrong" overstates the error rate:
x.foo() with two
visible foo declarations, Sonde emits both as confidence-weighted
HEURISTIC edges. At most one matches the compiler, so the other counts
as a false positive by construction. The alternative is guessing a single
target, which invariant 1 forbids β a wrong resolved-looking edge is worse
than two honestly heuristic ones. Precision is therefore capped below
1.000 wherever the fixture contains an ambiguous call.CALLS for
new Foo(); the oracle does not model them, so each one is a false
positive against ground truth that omits it.RegExpRouter.add to Router.add once the class
declares it implements the interface. tsc reports heritage clauses at the
type level only, so every member-level edge counts as a false positive
against ground truth that does not model them. The capability is the
reason impact on an interface method works at all, so the precision cost
is disclosed rather than removed.Counts are absolute, not percentages of a large corpus. Fixture edge totals appear below so a single edge's effect on each figure is visible.
Fixture config SHA-256: e02e2d5003f96d1ad22519f04e10d687fe689cf9298e7fcbc588eab525dce1ad
Oracle edges: 9 Β· Sonde edges: 7 Β· one oracle edge moves recall by 11.1%
| Edge kind | Tier | Precision | Recall | TP | FP | FN |
|---|---|---|---|---|---|---|
| CALLS | ALL | 0.500 | 1.000 | 2 | 2 | 0 |
| CALLS | LEXICAL | 0.500 | 0.500 | 1 | 1 | 1 |
| CALLS | HEURISTIC | 0.500 | 0.500 | 1 | 1 | 1 |
| IMPLEMENTS | ALL | 0.500 | 1.000 | 1 | 1 | 0 |
| IMPLEMENTS | LEXICAL | 0.500 | 1.000 | 1 | 1 | 0 |
| IMPLEMENTS | HEURISTIC | 1.000 | 0.000 | 0 | 0 | 1 |
| INHERITS | ALL | 1.000 | 1.000 | 1 | 0 | 0 |
| INHERITS | LEXICAL | 1.000 | 1.000 | 1 | 0 | 0 |
| INHERITS | HEURISTIC | 1.000 | 0.000 | 0 | 0 | 1 |
| REFERENCES | ALL | 0.571 | 0.800 | 4 | 3 | 1 |
| REFERENCES | LEXICAL | 0.800 | 0.800 | 4 | 1 | 1 |
| REFERENCES | HEURISTIC | 0.000 | 0.000 | 0 | 2 | 5 |
Overall: precision 0.571, recall 0.889
Regenerate with npm run bench:oracle.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/sonde)<a href="https://allmcps.com/mcp/sonde"><img src="https://allmcps.com/api/badge/sonde?style=directory" alt="Sonde on AllMCPs" /></a>