Qartez MCP

Code intelligence MCP server - PageRank, blast radius, co-change, hotspots, clone detection across 34 languages in a single Rust binary.

Qartez

Qartez MCP

X-ray vision for your codebase - built for AI agents, not humans.

The first code-intelligence server designed from day one to be
consumed by language models, not read by people. Cuts AI token usage by ~94%.

Quickstart · 30 Tools · Guard · Benchmarks · Comparison · 37 Languages · CLI · Contributing · Security · Changelog

crates.io downloads License MSRV 1.88 37 languages 30 MCP tools


Why this exists

grep, find, cat, and ls were invented in the 1970s for humans reading one file at a time in a terminal. Half a century later, your AI assistant is still using them - scanning files byte by byte, re-reading the same directories on every question, guessing at what matters, and burning your tokens on work the tools were never designed to do.

Qartez is a different species of tooling. It is not a wrapper around grep. It is a pre-computed knowledge graph of your repository - symbols, imports, call edges, blast radii, PageRank, git co-change, cyclomatic complexity - served to any LLM through the Model Context Protocol. The agent stops reading your codebase and starts querying it.

Think of it as the first purpose-built sensory organ for coding agents. Grep sees one line at a time. Qartez sees the entire shape of the codebase in one glance.

Every time your AI assistant touches code, three expensive things happen:

1. It reads the same files over and over. No memory of the repo. Every question starts from scratch. You pay for every token - again and again.

2. It can't see what will break. Your assistant edits utils.ts without knowing 14 other files import it. You find out in CI. Or in production.

3. It wastes tokens finding things. "Where is handleRequest defined?" turns into Grep across 200 files, Read on 5 candidates, and 1,600 tokens burned before it finds the answer. Qartez answers that in 50 tokens.

The fix isn't a smarter model. It's a smarter index.


Quickstart

Platform support: macOS 13+, Ubuntu 22.04+ (and other modern Linux), Windows via WSL 2. Architectures: x86_64 and arm64. Rust MSRV is 1.88 - the installer fetches it via rustup if missing.

Install (recommended)

curl -sSfL https://qartez.dev/install | sh

The installer checks for Rust, builds the three release binaries (qartez, qartez-guard, qartez-setup), installs them to ~/.local/bin/, and launches qartez-setup in non-interactive mode. The setup wizard auto-detects every MCP-capable IDE on your machine and configures them all in one pass, including the modification-guard hooks for Claude Code.

Open any project in your IDE - Qartez indexes it automatically on session start. No manual step needed. The file watcher keeps the index fresh as you edit.

Install via Cargo

cargo install qartez-mcp
qartez-setup        # then run the IDE wizard manually
Alternative: install from source
git clone https://github.com/kuberstar/qartez-mcp.git
cd qartez-mcp
make deploy

Want to inspect the install script before piping it into sh? Read it on GitHub: install.sh.

Interactive install, targeted install, and other options

Works with 19 editors and agents

A single Rust binary (qartez-setup) detects and configures every supported editor. No per-editor shell scripts, no copy-paste JSON.

make deploy                          # Configure every detected IDE (non-interactive)
make setup                           # Same, but interactive checkbox prompt
qartez-setup --ide cursor,zed       # Configure specific IDEs only
make uninstall                       # Remove qartez from every IDE and delete binaries

Supported out of the box: Claude Code, Claude Desktop, Gemini, Cursor, Windsurf, Kiro, Zed, Continue.dev, Copilot CLI, Amazon Q, Amp, Cline, Roo Code, Goose, Warp, Augment, OpenCode, Codex CLI, Antigravity.

Targeted install

qartez-setup --ide cursor,zed,claude

Configure a specific subset of IDEs only. Detected paths:

IDEConfig path
Claude Code~/.claude/settings.json
Claude Desktop~/Library/Application Support/Claude/claude_desktop_config.json
Gemini~/.gemini/settings.json
Cursor~/.cursor/mcp.json
Windsurf~/.codeium/windsurf/mcp_config.json
Kiro~/.kiro/settings/mcp.json
Zed~/.config/zed/settings.json
Continue.dev~/.continue/config.yaml
Copilot CLI~/.copilot/mcp-config.json
Amazon Q~/.aws/amazonq/mcp.json
Amp~/.config/amp/settings.json
ClineVS Code global storage saoudrizwan.claude-dev/settings/cline_mcp_settings.json
Roo CodeVS Code global storage rooveterinaryinc.roo-cline/settings/cline_mcp_settings.json
Goose~/.config/goose/config.yaml
Warp~/.warp/mcp_settings.json
Augment~/.augment/settings.json
OpenCode~/.config/opencode/opencode.json
Codex CLI~/.codex/config.toml
Antigravity~/.gemini/antigravity/mcp_config.json

Every install path is idempotent and backs up the existing config.

Enable Qartez in a project

Qartez indexes automatically on session start. For manual re-indexing:

qartez --root /path/to/your/project --reindex

Claude Desktop (manual)

{
  "mcpServers": {
    "qartez": {
      "command": "/absolute/path/to/qartez",
      "args": []
    }
  }
}

Uninstall

make uninstall

Removes Qartez from every configured IDE and deletes the binaries.


What Qartez does

Qartez builds a knowledge graph of your codebase - once - and serves it to any AI assistant through MCP. Instead of scanning files from scratch on every question, your assistant queries a pre-computed index that knows:

  • Which files matter most (PageRank on the import graph)
  • What breaks if you change a file (blast radius analysis)
  • Which files always change together (git co-change mining)
  • Which functions are the most dangerous to touch (cyclomatic complexity x coupling x churn)
  • Where every symbol is defined, who uses it, and who calls it
  • Which blocks of code are duplicated (structural AST shape hashing)
  • Which architecture boundaries the imports are violating
  • What types implement a trait/interface, and vice versa

The result: your AI works faster, uses fewer tokens, refactors safely, and stops making blind changes to load-bearing files.

Before and after

TaskWithout QartezWith Qartez
"Where is QartezServer defined?"Grep 200 files, Read candidates. 1,490 tokens.qartez_find. 52 tokens.
"What breaks if I change storage/read.rs?"BFS grep from imports, depth 2. 9,243 tokens.qartez_impact: direct + transitive importers + co-change. 352 tokens.
"Outline src/server/mod.rs (96 symbols)"Read full 300KB file. 77,843 tokens.qartez_outline with signatures. 3,009 tokens.
"Find all dead exports"Impossible without tooling.qartez_unused: pre-materialized, instant. 468 tokens.
"Which functions are the riskiest to refactor?"Nothing to query.qartez_hotspots: complexity x PageRank x churn.

The 30 tools

Think of these as the standard library for AI code understanding. Each one replaces a multi-step human workflow with a single, token-efficient call the agent can reason about.

Tools are organized into tiers with progressive disclosure. Core tools are always available. Additional tiers can be unlocked on demand via qartez_tools enable: ["analysis"] (or "all").

Core (always available)

ToolWhat it does
qartez_mapStart here. Project skeleton ranked by importance. PageRank, exports, blast radii. Boost by files or terms to focus on what you're working on.
qartez_findJump to a symbol definition by exact name. File, line range, signature, visibility. No scanning.
qartez_grepFTS5 search across indexed symbols. Prefix matching, regex fallback, optional body search.
qartez_readRead one or more symbols' source code with line numbers. No file scanning. Jumps directly to the symbol.
qartez_outlineTable of contents for any file: every symbol grouped by kind, with signatures.
qartez_impactCall before editing any important file. Shows direct importers, transitive dependents, and co-change partners. Everything that could break.
qartez_depsDependency graph for a file: what it imports, what imports it.
qartez_statsCodebase dashboard: files, symbols, edges by language, most-connected files.

Analysis (unlock via qartez_tools)

ToolWhat it does
qartez_refsTrace every usage of a symbol across the codebase, with optional transitive chains.
qartez_callsCall hierarchy: who calls this function, and what does it call.
qartez_cochangeFiles that historically change together in git. Logical coupling invisible to the import graph.
qartez_contextSmart context builder: given files you plan to modify, returns the optimal set of related files to read first.
qartez_unusedDead-code finder: exported symbols with zero importers, pre-materialized at index time.
qartez_diff_impactBatch impact for a git diff range. Pass a revspec like main..HEAD to get changed files with PageRank, union blast radius, convergence points, and co-change omissions. One call replaces N calls to qartez_impact + qartez_cochange.
qartez_hotspotsThe refactor radar. Ranks files and functions by hotspot score = cyclomatic complexity x PageRank x (1 + churn). Points straight at the highest-risk code in the repo.
qartez_clonesStructural code-clone detection via AST shape hashing (identifiers, literals, and comments are normalized away). Finds duplicate logic the human reviewer would never spot.
qartez_boundariesArchitecture-boundary enforcement. Declare "these modules may not import those" in .qartez/boundaries.toml and get every violating edge back. suggest=true seeds a starter config from the Leiden clustering.
qartez_hierarchyType hierarchy queries: find all types implementing a trait/interface, or all traits/interfaces a type implements. Works across Rust, TypeScript, Java, Python, and Go.
qartez_trendComplexity trend over git history: tracks how a function's cyclomatic complexity evolved commit by commit. Flags functions that are GROWING, STABLE, or SHRINKING.
qartez_securitySecurity scanner with 13 built-in rules. Regex-based pattern matching scored by PageRank to prioritize high-impact files. Custom rules via .qartez/security.toml. Filters by severity (low/medium/high/critical) and category.
qartez_smellsCode smell detector: finds god functions (high complexity + long body), long parameter lists, and feature envy (methods that use another type more than their own). Tuneable thresholds.
qartez_test_gapsTest coverage gap analysis via the import graph. Three modes: gaps ranks untested source files by risk, map shows test-to-source mappings, suggest recommends tests to run for a git diff range.
qartez_knowledgeBus-factor analysis. Git-blame-based authorship at file and module level. Surfaces single-author files and modules where knowledge is concentrated in one contributor.
qartez_semanticSemantic search using a local embedding model. Natural-language queries ranked by hybrid FTS5 + vector similarity (RRF). Requires the semantic cargo feature and a one-time model download (~270 MB).

Refactor (unlock via qartez_tools)

ToolWhat it does
qartez_renameRename a symbol across the entire codebase. Definition, imports, all usages. Preview by default, apply=true to execute.
qartez_moveMove a symbol to another file and rewrite all import paths. One MCP call.
qartez_rename_fileRename a file and update every import pointing to it.

Meta (unlock via qartez_tools)

ToolWhat it does
qartez_projectAuto-detects your toolchain (Cargo, npm/bun/yarn, Go, Python, Make, Gradle) and runs test/build/lint/typecheck through a single tool.
qartez_wikiGenerates a markdown architecture wiki using Leiden community detection on the import graph. Partitions files into clusters, names each one, and emits ARCHITECTURE.md with inter-cluster edges.

Tier management

ToolWhat it does
qartez_toolsAlways visible. Lists all tiers and their tools. Use enable: ["analysis"], enable: ["all"], or disable: ["refactor"] to control which tools are exposed to the agent. Core tools cannot be disabled.

Workflow prompts

Five ready-to-use recipes that chain the tools above in the right order. Invoke them as slash commands in Claude Code or any MCP client that supports prompts.

PromptWhat it does
/qartez_review <file>Code review: blast radius, outline, references, co-change - then a focused checklist.
/qartez_architecture [top_n]One-minute architecture overview grounded in PageRank data.
/qartez_debug <symbol>Definition + callers + callees + references in one shot.
/qartez_onboard [area]Five-file reading list for new contributors, ranked by importance.
/qartez_pre_merge <files>Pre-merge safety check with a ship/hold recommendation.

Modification guard

Qartez ships a safety net that prevents your AI from blindly editing load-bearing files.

The qartez-guard binary hooks into Claude Code's PreToolUse system and blocks Edit/Write/MultiEdit on any file that exceeds a PageRank or blast-radius threshold - until the AI calls qartez_impact first to acknowledge the risk.

How it works:

  1. AI tries to edit src/server/mod.rs
  2. Guard checks: PageRank 0.23 (> 0.05 threshold), blast radius 10 (>= 10 threshold)
  3. Edit is blocked with an explanation listing which thresholds fired
  4. AI calls qartez_impact file_path=src/server/mod.rs - reviews the blast radius
  5. Guard grants a 10-minute edit window for that file
  6. AI retries the edit - allowed

Zero configuration. Tuneable via QARTEZ_GUARD_PAGERANK_MIN, QARTEZ_GUARD_BLAST_MIN, QARTEZ_GUARD_ACK_TTL_SECS, or disabled with QARTEZ_GUARD_DISABLE=1.


Benchmarks

Not claims. Measured. Reproducible. Run make bench and verify yourself.

Headline

Aggregate token savings vs Glob + Grep + Read + git log: +91.8% (sum of MCP 38,789 / sum of non-MCP 472,109 tokens across all 28 scenarios on the Qartez self-bench. Conservative under-count: 10 of 28 scenarios have an incomplete non-MCP sim - those rows still contribute their MCP tokens to both sums. On the 18 scenarios with a fair token-to-token comparison the saving rises to +94.5%.)

LLM-judge quality (claude-opus-4-6): MCP 8.3 / 10 vs non-MCP 4.3 / 10 across five axes (correctness, completeness, usability, groundedness, conciseness), n=28.

Session cost context. A typical Claude Code session starts at ~20,000 tokens of prompt overhead. A single make bench run saves ~433,000 tokens - ~21 empty sessions worth of budget bought back, just from routing questions through the right tool.

Per-tool breakdown (Rust self-bench)

18 tools with complete non-MCP simulations (fair token-to-token comparison):

ToolMCP tokensWithout MCPSavingsSpeedup
qartez_cochange9214,622+99.4%2x
qartez_context1074,489+97.6%533x
qartez_find521,490+96.5%210x
qartez_impact3529,243+96.2%140x
qartez_outline3,00977,843+96.1%5x
qartez_project681,394+95.1%0x
qartez_unused4686,750+93.1%22x
qartez_deps1662,286+92.7%118x
qartez_map87674+87.1%1x
qartez_rename_file27185+85.4%211x
qartez_grep127763+83.4%72x
qartez_stats155848+81.7%1x
qartez_move161701+77.0%159x
qartez_calls5642,409+76.6%3x
qartez_refs201692+71.0%26x
qartez_read150495+69.7%100x
qartez_hierarchy7352,056+64.3%127x
qartez_rename439648+32.3%11x

10 additional analytical tools have no meaningful grep/read equivalent - they solve problems the non-MCP stack cannot solve at all:

qartez_hotspots, qartez_clones, qartez_smells, qartez_test_gaps, qartez_wiki, qartez_boundaries, qartez_trend, qartez_knowledge, qartez_diff_impact, qartez_security.

Multi-language bench

make bench-all runs the same 28-scenario harness against five pinned OSS fixtures - colinhacks/zod (TypeScript), spf13/cobra (Go), encode/httpx (Python), FasterXML/jackson-core (Java), plus the Qartez self-bench (Rust) - then emits a cross-language summary to reports/benchmark-<lang>.md plus a combined matrix. Every tool, every language, every scenario - measured with the cl100k_base tokenizer against a faithful Glob + Grep + Read + git log simulation.

make bench          # Rust self-bench only - fresh measurements
make bench-all      # All 5 languages (Rust, TypeScript, Python, Go, Java) + cross-language summary
make bench-fixtures # Clone and index the pinned fixture repos

Reports land in reports/benchmark.md / reports/benchmark.json for the single-language run, or reports/benchmark-<lang>.md plus a combined cross-language summary for bench-all.


How it works under the hood

Four layers, computed once, queried from SQLite on every tool call.

1. Tree-sitter parsing

Every source file is parsed by a language-specific tree-sitter grammar. No LSP server, no per-language SDK installs, no cold-start penalty. The parser extracts symbols (functions, methods, types, constants), their signatures, line ranges, export visibility, import relationships, and - for 21 imperative languages - cyclomatic complexity per function.

2. Structural shape hashing

Function bodies are canonicalized into an AST skeleton (identifiers, literals, and comments normalized away) and hashed. Two symbols with the same hash are structural clones. That's what qartez_clones queries.

3. Graph analysis

Import edges form a directed graph. Three algorithms run on top:

  • PageRank - the same random-walk algorithm Google used for web pages. Applied to your import graph, it surfaces the files that form the architectural backbone of your project.
  • Blast radius - reverse BFS that counts how many files are transitively affected by a change. qartez_impact uses this to warn before edits.
  • Leiden clustering - community detection that partitions your codebase into logical modules for the auto-generated architecture wiki and the qartez_boundaries starter config.

4. Git history mining

Walks the last N commits (default 300) and counts file pairs that appear in the same commit. This reveals logical coupling that the import graph can't see - files that aren't linked by imports but are always edited together.

qartez_impact, qartez_context, and qartez_hotspots fuse these signals - PageRank + blast + co-change + complexity - into one ranked answer. No other MCP server combines all four.

Storage

Everything lives in .qartez/index.db - a single SQLite file with FTS5 full-text indices. On startup, Qartez re-parses only files whose modification time changed. The file watcher is enabled automatically while the server is running - edits and new files are re-indexed in the background with zero downtime. Pass --no-watch to disable it.

Transport

Qartez communicates over stdio (stdin/stdout JSON-RPC), the standard MCP transport. No HTTP server, no port allocation, no network exposure. The IDE launches the qartez binary as a child process and exchanges messages over pipes.


Supported languages

One binary. No per-language setup. All 37 languages parsed by tree-sitter (with regex fallbacks for formats lacking a compatible grammar). 21 imperative languages also get cyclomatic complexity per function, powering qartez_hotspots.

Full language table (37 languages)
LanguageExtensions / Filenames
TypeScript / JavaScript.ts .tsx .js .jsx .mts .cts .mjs .cjs
Rust.rs
Go.go
Python.py .pyi
Java.java
Kotlin.kt .kts
Swift.swift
C#.cs
C.c .h
C++.cpp .cc .cxx .hpp .hh .hxx
Ruby.rb
PHP.php
Bash.sh .bash
CSS.css .scss
Scala.scala .sc - classes, traits, objects, case classes
Dart.dart - classes, mixins, enums, underscore-based privacy
Lua.lua - functions, methods (M.f/M:f), require imports
Elixir.ex .exs - defmodule, def/defp, defstruct, alias/use/import
Zig.zig - pub fn, structs, enums, unions, @import
Nix.nix - attribute bindings, functions, import paths
Haskell.hs .lhs - top-level functions, data, newtype, type, typeclasses, import
OCaml.ml .mli - let bindings, type, module, class, exception, open/include
R.r .R - function/variable assignments, S4/R6 classes, library/require/source
Protobuf.proto - message, service, rpc, enum, import
SQL.sql - CREATE TABLE/VIEW/FUNCTION/PROCEDURE, ALTER, BEGIN...END blocks
HCL / Terraform.tf - cross-file var/local/module/data/resource references
YAML.yaml .yml - K8s, GitHub Actions, GitLab CI, docker-compose, Ansible
DockerfileDockerfile, Dockerfile.*, .dockerfile - multi-stage COPY --from refs
MakefileMakefile, GNUmakefile, .mk - targets, variables, include imports
TOML.toml - tables, keys, arrays of tables
Nginx.conf, .nginx - server, location, upstream blocks
Helm / Go templates.tpl - define/include/template blocks
Jenkinsfile / GroovyJenkinsfile, .groovy - pipeline, stage, node, def
Starlark / BazelBUILD, BUILD.bazel, WORKSPACE, WORKSPACE.bazel, .bzl, .star, .bazel - load, rules with name=, def
Jsonnet.jsonnet .libsonnet - local functions/vars, fields, import/importstr
CaddyfileCaddyfile, .caddyfile - site blocks, handle, reverse_proxy, snippets
Systemd units.service .timer .socket .mount .target .path .slice .scope - sections, ExecStart, directives

Highlights: TypeScript, Rust, Go, Python, Java, Kotlin, Swift, C#, C/C++, Ruby, PHP, Dart, Scala, Elixir, Zig, Lua, Haskell, OCaml, R, and 17 more. All 21 imperative languages include cyclomatic complexity scoring.


Comparison with alternatives

The MCP codebase-intelligence space is crowded in 2026. This section covers direct OSS competitors, enterprise platforms, and adjacent ecosystems. All star counts were cross-checked against each project's GitHub repository in April 2026.

Direct OSS MCP competitors

Nine projects share the "MCP server for codebase intelligence" niche, sorted by GitHub stars.

ProjectStarsImpl.Indexing approachLanguagesMCP tools
Qartez (this repo)newRusttree-sitter + SQLite + PageRank + blast radius + co-change + complexity + clones + boundaries3730
Serena23kPythonLSP (per-language language servers)46+~35
code-review-graph10.4kPythontree-sitter + SQLite + Leiden clustering23+28
Claude-Context5.9kTypeScriptEmbeddings + Milvus/Zilliz vector DB144
CodeGraphContext3kPythontree-sitter + KuzuDB / FalkorDB / Neo4j1421
Codebase-Memory MCP1.6kCtree-sitter + SQLite + hybrid type resolution6614
Repowise1.2kPythonDependency graph + git history + LLM-generated docs147
Code Index MCP903Pythontree-sitter (10 langs) + ripgrep fallback for 50+10 + 5011
Codanna651Rusttree-sitter + tantivy FTS + fastembed15~9
Feature-by-feature comparison
CapabilityQartezSerenacode-review-graphClaude-ContextCodeGraphContextCodebase-MemoryRepowiseCode Index MCPCodanna
Tree-sitter parsingYesNo (LSP)YesChunking onlyYesYesNoYes (10 langs)Yes
PageRank importance rankingYesNoNoNoNoNoNoNoNo
Blast radius (transitive dependents)YesNoYesNoNoYesNoNoYes
Git co-change miningYesNoNoNoNoYesYesNoNo
Cyclomatic complexity per functionYes (21 langs)NoNoNoNoNoNoNoNo
Hotspot scoring (complexity x PR x churn)YesNoNoNoNoNoNoNoNo
Structural code-clone detectionYesNoNoNoNoNoNoNoNo
Architecture-boundary enforcementYesNoNoNoNoNoNoNoNo
Quad-signal impact (PR + blast + co-change + complexity)YesNoNoNoNoNoNoNoNo
Code smell detection (god functions, feature envy)YesNoNoNoNoNoNoNoNo
Test coverage gap analysisYesNoNoNoNoNoNoNoNo
Bus-factor / knowledge analysisYesNoNoNoNoNoNoNoNo
Type hierarchy queriesYesVia LSPNoNoNoNoNoNoNo
Call graph (caller / callee)YesPartialYesNoYesYesNoNoYes
Refactoring (rename / move / rename-file)Yes (preview + apply)Rename only (LSP); move via JetBrains plugin (paid)Rename preview onlyNoNoNoNoNoNo
Toolchain command runner (test / build / lint)YesShell onlyNoNoNoNoNoNoNo
Smart multi-signal context builderYesNoPartialNoNoNoNoNoNo
Batch diff impact analysisYesNoNoNoNoNoNoNoNo
MCP prompt templatesYes (5)NoYes (5)NoNoNoNoNoNo
One-command multi-IDE installYes (19 IDEs, Rust wizard)No (manual)Yes (9 IDEs)No (manual)Yes (10 IDEs)Yes (10 agents)NoNoNo
Security scanning (regex + PageRank scoring)YesNoNoNoNoNoNoNoNo
Complexity trend over git historyYesNoNoNoNoNoNoNoNo
Progressive tool disclosure (tiers)Yes (4 tiers)NoNoNoNoNoNoNoNo
Semantic / vector searchYes (opt-in, local embedding)NoOptional (FTS5 hybrid)Yes (Milvus)NoNoNoNoYes (fastembed)
Community detection + auto-wikiYes (Leiden + wiki)NoYes (Leiden + wiki)NoNoPartial (Louvain, no wiki)NoNoNo
Graph visualizationNoNoYes (D3.js)NoYes (Neo4j + HTML)Yes (3D interactive)NoNoNo
Watch mode (incremental re-index)Yes (auto-on)PartialYesPartialYesYesNoYesYes
Published per-tool benchmarks with LLM judgeYes (28 scenarios, 8.3/10 vs 4.3/10)Third-party onlyYes (6 repos, 8.2x avg)Limited (~40% claim)NoYes (arXiv paper, 10x tokens)NoNoPartial (criterion)
Modification guard (blocks risky edits)YesNoNoNoNoNoNoNoNo
Embedding model / vector DB requiredNoNoOptionalYesNoNoNoNoYes
Cloud dependencyNoNoNoYes (default)NoNoNoNoOptional

Enterprise and IDE-native alternatives

Commercial platforms solving the same problem for users willing to trade local-first and open-source for polish or cross-repo scale:

  • Sourcegraph Cody / Amp - compiler-grade SCIP indexers, official MCP server since 2026. Cloud-first, enterprise pricing.
  • Augment Code - $227M Series B. Real-time semantic index + code-relationship graph across 400k+ files, official MCP server since Oct 2025. Cloud dependency.
  • Deep Graph MCP (CodeGPT) - 392 stars. Cloud-hosted knowledge graph backend; swap github.com to deepgraph.co in any repo URL for a pre-built code graph. No local indexing needed.
  • JetBrains AI Assistant (IntelliJ 2025.2+) - embedded MCP server exposing IDE-grade symbols and diagnostics. JetBrains-only.
  • Cursor - custom embedding model, team-shared index in Turbopuffer. Closed IDE, no MCP exposure.
  • Windsurf Cascade - RAG-based M-Query retrieval. Closed IDE, no MCP server.

Qartez gives you the same structural intelligence these platforms sell - running entirely on your laptop, for free.

Also notable (smaller projects)
ProjectStarsImpl.Niche
Drift772TS / RustLearns codebase patterns and conventions, teaches them to AI across sessions
Octocode319RustGraphRAG knowledge graph + hybrid semantic search (4 MCP tools)
mcp-server-tree-sitter287PythonRaw tree-sitter query exposure for agents to compose their own analyses (~20 tools)
CodeGraph179RustSurrealDB + LSP + ReAct / LATS agentic architecture, partial blast radius
RepoMapper150PythonAider's PageRank-on-tree-sitter as a single MCP tool
Narsil-MCP134Rust90 MCP tools, 32 languages, call graphs + taint analysis + SBOM security scanning
Code Pathfinder118GoSecurity-focused SAST with cross-file taint/dataflow analysis via MCP
Code Graph RAG MCP86TypeScriptGraph + RAG hybrid, 26 MCP methods, clone detection
Tree-sitter Analyzer20PythonPageRank + modification_guard that blocks unsafe edits (17 languages)
AiDex25TypeScript30 MCP tools, task management, screenshot capture, Log Hub (11 languages)

Adjacent ecosystems (different category, same problem)

  • Aider repo-map - Paul Gauthier's CLI pioneered tree-sitter + PageRank in October 2023. Lives inside the aider CLI, not as an MCP server. RepoMapper wraps the single repo_map output as MCP.
  • Continue.dev - MCP client, not server. Its documentation explicitly recommends pairing Continue with a dedicated code-graph MCP server - the role Qartez fills.
  • Context7, Mem0, Pieces LTM - memory and documentation tools, not codebase indexers. Complementary, not competing.
  • Block Goose, Cline, Codebuff - coding agent clients that consume MCP servers. They are the users of tools like Qartez.

What makes Qartez different

1. Quad-signal impact analysis. qartez_impact, qartez_diff_impact, qartez_context, and qartez_hotspots fuse PageRank importance, static blast radius, git co-change, and cyclomatic complexity into one ranked answer. No other project combines all four.

2. Hotspots, clones, boundaries, security, smells, test gaps, knowledge, and trends in one server. qartez_hotspots ranks the most dangerous functions in the repo by complexity x coupling x churn. qartez_clones finds duplicated logic via AST shape hashing. qartez_boundaries enforces architecture rules declared in .qartez/boundaries.toml. qartez_security scans for vulnerability patterns scored by PageRank. qartez_smells detects god functions, long parameter lists, and feature envy. qartez_test_gaps finds untested source files ranked by risk. qartez_knowledge surfaces bus-factor risks from git blame. qartez_trend tracks how a function's complexity evolved commit by commit. These are eight separate commercial products elsewhere, one MCP call each here.

3. Refactoring through MCP with preview and apply. qartez_rename, qartez_move, and qartez_rename_file give the assistant atomic, reviewable refactors in a single MCP call. Serena offers rename via LSP (requires per-language server install); the remaining servers ship no refactoring tools at all.

4. Built-in safety net. The modification guard blocks your AI from editing high-impact files without reviewing the blast radius first. No other server in the main competitor table ships this.

5. Measured, not claimed. 28 scenarios, 8.3/10 vs 4.3/10 LLM-judge quality, per-tool token counts and latency. All reproducible with make bench (single-language) or make bench-all (5 languages with cross-language summary).

6. Rust-native, local-first, zero cloud dependency. Three binaries (qartez, qartez-guard, qartez-setup). No Python runtime, no vector database, no cloud account. Everything runs on your machine. No code leaves the box. An optional semantic cargo feature adds local embedding search, but the default build needs no model download.


Command-line options

Qartez also works as a standalone CLI. Run qartez <tool_name> (e.g., qartez map, qartez find Config, qartez impact src/server/mod.rs) to use any core or analysis tool directly from the terminal without an MCP client.

OptionDescriptionDefault
--root <path>Project root to index (repeatable for monorepos)Auto-detected
--reindexForce full re-indexOff
--git-depth <n>Commits to analyze for co-change300
--db-path <path>Override index location.qartez/index.db
--no-watchDisable the automatic file watcher (on by default)Watcher on
--wiki <path>Generate architecture wiki after indexingOff
--leiden-resolution <f>Cluster granularity (larger = more clusters)1.0
--format <format>Output format for CLI subcommands: human, json, compacthuman
--log-level <level>error, warn, info, debug, trace (any tracing directive accepted)info

Project layout
src/
  main.rs                  Entry point: index, compute, start server
  lib.rs                   Library root (re-exports)
  cli.rs                   CLI argument parsing (19 subcommands)
  cli_runner.rs            CLI subcommand dispatcher
  config.rs                Project configuration and root detection
  error.rs                 Error types
  str_utils.rs             String utilities (stable floor_char_boundary polyfill)
  toolchain.rs             Toolchain detection (Cargo, npm, Go, etc.)
  watch.rs                 File watcher for incremental re-indexing
  guard.rs                 Modification guard evaluation engine
  embeddings.rs            Local embedding model for qartez_semantic (opt-in)
  server/
    mod.rs                 MCP server entrypoint - dispatches to per-tool handlers
    tools/                 30 per-tool handler modules (one file per MCP tool)
    prompts.rs             5 workflow prompt templates
    tiers.rs               Progressive tool disclosure (core/analysis/refactor/meta)
    cache.rs               Tree-sitter parse cache
    helpers.rs             Shared handler utilities
    overview.rs            Overview/map generation
    params.rs              Tool parameter structs
    treesitter.rs          Tree-sitter integration helpers
    mcp_instructions.md    Embedded MCP server instructions
  index/
    mod.rs                 Core indexing engine (full + incremental, import resolution)
    walker.rs              File discovery (respects .gitignore + .qartezignore)
    parser.rs              Tree-sitter parser pool
    symbols.rs             Symbols / imports / references + AST shape hashing
    languages/             37 language adapters (21 with cyclomatic complexity)
  graph/
    mod.rs                 Graph module root
    pagerank.rs            PageRank on import graph
    blast.rs               Blast radius BFS
    leiden.rs              Community detection (Leiden clustering)
    boundaries.rs          Architecture-boundary rules engine
    security.rs            Security rule engine (powers qartez_security)
    wiki.rs                Architecture wiki renderer
  git/
    mod.rs                 Git module root
    cochange.rs            Co-change pair mining
    diff.rs                Diff range analysis (for qartez_diff_impact)
    trend.rs               Complexity trend over git history
    knowledge.rs           Code authorship and bus-factor analysis
  storage/
    mod.rs                 Storage module root
    schema.rs              SQLite + FTS5 schema
    read.rs / write.rs     Query and mutation helpers
    models.rs              Row structs
  bin/
    setup.rs               Interactive IDE setup wizard (19 IDEs)
    guard.rs               PreToolUse modification guard
    benchmark.rs           Benchmark harness entry point
  benchmark/               Benchmark internals (cargo feature)
    profiles/              Per-language benchmark profiles (Rust, TS, Python, Go, Java)
    scenarios.rs           28 benchmark scenarios
    judge.rs               LLM-judge harness
    report.rs              Markdown / JSON report writers
    tokenize.rs            cl100k_base token accounting
scripts/                   Hook + snippet assets embedded by qartez-setup
benchmarks/fixtures.toml   Pinned OSS repos for multi-language benchmarks
reports/                   Generated benchmark.md / benchmark.json artifacts

Contributing

Found a bug? Open an issue. Want to add a language, fix a parser, or improve a tool? Pull requests are welcome - read CONTRIBUTING.md and CODE_OF_CONDUCT.md first. Non-trivial PRs require signing the CLA.md.

git clone https://github.com/kuberstar/qartez-mcp.git
cd qartez-mcp
cargo build
cargo test

Release notes for every version live in CHANGELOG.md.


Security

Found a vulnerability? Do not open a public issue. Follow the disclosure policy in SECURITY.md.


License

Dual-licensed under the Qartez Small Team License (free for individuals and small teams) and the Qartez Commercial License (for everyone else). Read the full text in LICENSE, and see COMMERCIAL.md for the commercial terms summary. SPDX identifier: LicenseRef-Qartez-Dual.


Grep was for humans. Qartez is for agents.

If Qartez saves you even 10% of your monthly AI bill, star the repo - it's the only signal that tells other builders this approach is worth trying.

Related Servers

NotebookLM Web Importer

Import web pages and YouTube videos to NotebookLM with one click. Trusted by 200,000+ users.

Install Chrome Extension