
When text search falls short and you need to understand code structure, sqry indexes your codebase into an AST-backed symbol graph and exposes 33 MCP tools for semantic queries. Ask for all callers of a function, trace execution paths between symbols, find circular dependencies, or query by visibility and async attributes across 35 languages including Rust, TypeScript, Python, and Go. The tools cover relation queries (callers, callees, imports), graph analysis (trace paths, detect cycles, unused code), and cross-language detection like FFI linking and HTTP route matching. It runs locally via stdio transport, keeps graphs hot through an optional daemon, and complements rather than replaces your existing grep and AST pattern tools by focusing on what code means instead of what it says.
sqry is a local semantic code search tool. It parses source code into AST-backed symbol and relationship graphs so you can ask code questions that text search cannot answer reliably.
Everything runs on your machine. Indexing and querying make no network calls, and sqry sends no telemetry.
Website: https://sqry.dev
json is compiled but excluded by default as high-wall-clock, and 7 specialty plugins sit behind Cargo features. The sqry://meta/manifest MCP resource reports these counts for the binary you have installed.returns:<TypeName> and resolution-aware resolved_via:<kind> predicates for supported graph paths. See Call resolution predicates.FfiCall edges from mechanisms such as extern "C", DllImport / P/Invoke, JNI, Ruby FFI attach_function, and R .Call / Rcpp. Query them with sqry graph cross-language or the cross_language_edges MCP tool.sqry shape-match, which finds functions with similar body structure independently of their identifiers.sqry rules run executes shipped rule IDs and packs, or your own TOML rule packs, against the graph; the rules_run MCP tool exposes the same engine.sqry context-propagation) for call sites that drop context.Context.sqry cache expand builds a macro expansion cache, --expand-cache materializes macro-generated symbols as searchable nodes, and --cfg marks #[cfg]-gated symbols active or inactive. Both index-path options are execution-free.sqry visualize, sqry export).sqry shell) and batch runner (sqry batch) that keep the session cache warm across many queries.sqry update and sqry watch..sqry-workspace registries and VS Code .code-workspace sqry.workspace blocks. sqryd for editor, MCP, and repeated-agent workflows.sqry overview (and the matching generate_overview MCP tool for agents): a single report of the load-bearing hubs, path/package subsystems, complexity hotspots, potential issues, and ready-to-run follow-up queries.sqry-mcp currently exposes 39 tools; daemon-hosted MCP exposes a 17-tool subset. Use tools/list, sqry-mcp --list-tools, or sqry://meta/manifest as the authoritative catalog.Use sqry when you need structural answers:
sqry index .
sqry overview # orient in an unfamiliar repo, then run the queries it suggests
sqry query "kind:function AND visibility:public AND lang:rust"
sqry query "returns:Result"
sqry graph direct-callers authenticate
sqry graph trace-path main handle_request
sqry visualize "callers:authenticate" --format mermaid
Use ripgrep for simple text search, ast-grep for syntax rewrite patterns, language linters for policy enforcement, and an IDE language server for full editor semantics. sqry stays focused on local semantic code search.
curl -fsSL https://raw.githubusercontent.com/verivus-oss/sqry/main/scripts/install.sh | bash -s -- --component all
The shell installer downloads release assets, verifies SHA256 checksums by default, and installs:
sqrysqry-mcpsqry-lspsqrydSupported release platforms are Linux x86_64/arm64 (glibc and musl builds), macOS x86_64/arm64, and Windows x86_64.
Useful options:
curl -fsSL https://raw.githubusercontent.com/verivus-oss/sqry/main/scripts/install.sh | \
bash -s -- --component all --version vX.Y.Z --verify-signatures
--verify-signatures requires gh or Cosign. It verifies the current release-artifacts.attestation.json GitHub artifact attestation from release-distribute.yml; older releases can still fall back to legacy per-asset Cosign bundles. SHA256 verification remains the default integrity check.
Invoke-WebRequest https://raw.githubusercontent.com/verivus-oss/sqry/main/scripts/install.ps1 -OutFile install.ps1
Get-Content .\install.ps1
.\install.ps1 -Component all -VerifySignatures
The PowerShell installer downloads the Windows x86_64 release ZIP, verifies checksums by default, and installs sqry.exe, sqry-mcp.exe, sqry-lsp.exe, and sqryd.exe into the user install directory.
Use a pinned release when reproducibility matters:
.\install.ps1 -Component all -Version vX.Y.Z -VerifySignatures
Homebrew is the package-manager surface currently backed by the public release manifest.
brew tap verivus-oss/sqry
brew install sqry
The formula installs sqry, sqry-mcp, sqry-lsp, and sqryd for Linux x86_64/arm64 and macOS x86_64/arm64.
Scoop, Winget, AUR, Nix, and Snap are not advertised as public release assets until their release-control surfaces are complete and validated.
git clone https://github.com/verivus-oss/sqry.git
cd sqry
cargo install --path sqry-cli
cargo install --path sqry-mcp
cargo install --path sqry-lsp
cargo install --path sqry-daemon
Requirements:
1.94+ with Edition 2024.1.94.1 in rust-toolchain.toml.# Build the default fast-path index.
sqry index .
# Check status without rebuilding.
sqry index --status --json .
# Force a rebuild after upgrading across graph-format or semantics changes.
sqry index --force .
Index artifacts live under .sqry/. Add .sqry/ and legacy .sqry-index artifacts to your project ignore rules unless you intentionally share them.
sqry search main . --validate fail --auto-rebuild
sqry index --status --metrics-format prometheus .
--validate takes off, warn (default), or fail. Under fail a stale index aborts with exit code 2 instead of returning results computed from it, which is what makes it usable as a CI gate. --auto-rebuild rebuilds once and retries, and is a no-op under --validate off. Thresholds are tunable: --threshold-orphaned-files defaults to 0.20, so validation trips when more than 20% of indexed files no longer exist on disk, and --threshold-dangling-refs defaults to 0.05.
Note the limit: these are global flags, but validation is evaluated on the snapshot-loading path taken by search. Passing them to sqry index when an index already exists does not trigger a validation pass.
--metrics-format prometheus emits OpenMetrics-compatible text for scraping index status.
sqry records the plugin set that built an index so later graph-loading commands reuse the same semantics.
sqry index . # default fast path
sqry index --include-high-cost . # all compiled non-default plugins
sqry index --exclude-high-cost . # force the fast path
sqry index --enable-plugin json . # opt into one plugin
sqry index --disable-plugin json . # opt out of one plugin
The registry has fast plugins, high-wall-clock plugins, and optional specialty plugins. json is high-wall-clock. Optional specialty plugins include apex, abap, servicenow-xanadu-js, servicenow-xml, terraform, puppet, and pulumi when compiled with the matching Cargo features or specialty-plugins.
See Indexing for artifact cleanup, plugin tiers, and high-cost behavior.
# Symbol and attribute predicates.
sqry query "kind:function AND name:parse_*"
sqry query "kind:struct AND lang:rust"
sqry query "kind:function AND returns:Result"
# Relation predicates.
sqry query "callers:authenticate"
sqry query "callees:handle_request"
sqry query "imports:serde"
# Planner-backed query.
sqry plan-query "kind:function callers:main"
# Resolution-aware call filtering where populated by graph metadata.
sqry plan-query "kind:function callers:my_read resolved_via:binding_plane"
returns:<TypeName> uses graph TypeOf{Return} edges.
resolved_via:<kind> filters call edges by what kind of binding produced the edge. That is a different question from how confident the resolver is: a duck_typed edge is not a low-confidence direct edge, it is a record that the call was bound by Python duck typing rather than by a syntactic reference. Knowing the mechanism lets you separate calls the compiler could have checked from calls that only resolve at runtime.
The parser accepts eight values:
| Value | Binding mechanism |
|---|---|
direct | Syntactic call resolved by the language plugin |
type_match | Indirect call matched against compatible signatures by type |
binding_plane | Designated-initializer witnesses in the binding plane |
virtual_dispatch | JVM virtual or abstract method dispatch |
interface_dispatch | Go interface dispatch |
duck_typed | Python duck-typed dispatch |
structural | TypeScript structural dispatch |
promiscuous_elided | Fan-out cap exceeded, so the resolver recorded a diagnostic self-edge instead of N targets |
# Callers of my_read that only bind through the binding plane,
# not through a plain syntactic call.
sqry plan-query "kind:function callers:my_read resolved_via:binding_plane"
framework filtering is exposed as a typed MCP parameter. The planner also parses framework:<id>, but framework-route metadata is only populated where extractors have run. Treat a non-match as absent metadata, not proof that a framework is unused.
See Advanced Analysis for graph predicates, snapshot wording, impact analysis, semantic diff, and visualization.
Use a workspace when one logical project spans several repositories or folders.
sqry workspace init .
sqry workspace scan .
sqry workspace status . --json
sqry workspace clean .
Workspace configuration can come from a .sqry-workspace registry or a VS Code .code-workspace file with a sqry.workspace block. See Workspaces.
sqryd keeps graph state warm for repeated CLI, LSP, MCP, and editor workflows.
sqry daemon start
sqry daemon load .
sqry daemon status --json
sqry daemon rebuild . --force
sqry daemon logs --follow
See Daemon Mode.
Configure MCP clients with:
sqry mcp setup --tool claude
sqry mcp setup --tool codex
sqry mcp setup --tool gemini
Standalone sqry-mcp is the full local tool surface. sqry-mcp --daemon attaches to sqryd and exposes the daemon-hosted subset. workspace_status.source_root_id is an opaque display/correlation token, not a path. See MCP Guide and the component docs in sqry-mcp/README.md.
MCP search tools keep string predicates and structured JSON parameters separate:
{
"name": "semantic_search",
"arguments": {
"query": "kind:function items:true",
"filters": {
"language": ["rust"],
"visibility": "public"
}
}
}
Use items:true or is_definition:true in query for definition-only query predicates. When calling list_symbols, use the structured items_only parameter:
{
"name": "list_symbols",
"arguments": {
"kind": "function",
"language": "rust",
"items_only": true
}
}
If a graph was built before the V16 definition-signal snapshot format, definition-only query predicates and list_symbols.items_only return a reindexRequired / reindex-required advisory rather than trusting stale marker data.
For the VS Code extension, see sqry-vscode/README.md and sqry-vscode/USER_GUIDE.md.
release-artifacts.attestation.json asset and verifiable with gh attestation verify or Cosign. SHA256SUMS.txt ships alongside, and both installers verify checksums by default.cargo-vet (importing the Mozilla, Google, Bytecode Alliance, and ISRG audit sets), cargo-deny, and cargo-audit. Clippy runs as -D warnings.cargo-fuzz. cargo-mutants runs on changed lines per PR and against a canary-crate baseline on master; it currently reports rather than blocks.Do not assume an artifact is present unless it appears in the asset list for the release you are installing. To report a vulnerability, see SECURITY.md.
sqry is an MIT-licensed open-source project focused on one product goal: local semantic code search. It is not a hosted search platform, linter, IDE replacement, or general metrics platform.