Nexus-MCP-CI

Unified MCP server: hybrid search + code graph + semantic memory. 10 tools, <350MB RAM, fully local. No API keys.

Documentation

de en es ja ko ru zh

Nexus-MCP

PyPI version Python 3.10–3.12 License: PolyForm Noncommercial 1.0.0 CI Glama MCP server

Hybrid search + code graph + semantic memory in a single local MCP server — under 350 MB RAM.

Nexus-MCP is a code intelligence server for the Model Context Protocol. It gives AI agents precise, token-efficient answers about your codebase without cloud dependencies: no API keys, no data egress, no subscriptions.

pip install nexus-mcp-ci
claude mcp add nexus-mcp-ci -- nexus-mcp-ci

The Problem It Solves

AI coding agents are token-inefficient by default. An agent trying to understand verify_credentials() typically:

  1. Glob("src/**/*.py") → 120 files returned, agent reads the most likely 8 → ~12,000 tokens
  2. Grep("verify_credentials") → 3 matches, agent reads surrounding context → ~4,000 tokens
  3. Read("auth/middleware.py") → full 400-line file to understand callers → ~3,000 tokens

Total: ~19,000 tokens, 3+ tool calls, no graph relationships.

With Nexus-MCP:

  1. explain("verify_credentials") → symbol definition + all callers + all callees + complexity metrics → ~1,500 tokens, 1 tool call

Or for discovery:

  1. search("credential verification flow") → top-10 semantically relevant chunks across the codebase → ~2,000 tokens, 1 tool call

Estimated savings: 30–60% token reduction per coding session. The exact numbers depend on codebase size and task type — see the benchmarks table below.


Related MCP server: embecode

Quickstart (60 seconds)

# 1. Install
pip install nexus-mcp-ci

# 2. Register with Claude Code
claude mcp add nexus-mcp-ci -- nexus-mcp-ci

# 3. Verify (in any Claude Code session)
# Claude will automatically use nexus-mcp-ci tools when CLAUDE.md instructs it

Then drop a CLAUDE.md in your project root:

## Code Navigation

Use nexus-mcp-ci tools before built-in file tools:
- Start sessions with \`mcp__nexus-mcp__status\`; run \`index\` if needed
- \`search\` before \`Read/Grep\`
- \`explain\` instead of reading a file to understand a symbol
- \`impact\` before any refactor

That's it. Claude will index your project on first use and use Nexus-MCP tools automatically.


How It Works

Indexing Pipeline (8 steps)

Source files
    │
    ├─ Step 1: Discover ──────── walk tree, filter by ext/size/.gitignore
    │
    ├─ Step 2: Parse symbols ─── tree-sitter (parallel ThreadPool)
    │           extracts: functions, classes, methods
    │           captures: name, signature, docstring, line_start/end, language
    │
    ├─ Step 3: Parse graph ────── ast-grep (sequential for consistency)
    │           extracts: call edges, import edges, inheritance edges
    │           output: UniversalGraph(nodes=[], edges=[])
    │
    ├─ Step 4: Transfer graph ── populate rustworkx PyDiGraph
    │           O(1) node lookup by name, Rust-backed traversal
    │
    ├─ Step 5: Chunk ──────────── Symbol → CodeChunk
    │           deterministic IDs: SHA256(file_path + symbol_name + line)
    │           avoids duplicate inserts on incremental reindex
    │
    ├─ Step 6: Embed ──────────── bge-small-en: 384-dim (default) or jina-code: 768-dim via ONNX
    │           lazy-loaded, unloaded after indexing (try/finally)
    │           GPU/MPS auto-detected; falls back to CPU
    │
    ├─ Step 7: Store ──────────── write to LanceDB \`chunks\` table (12-col PyArrow schema)
    │           rebuild native FTS (Tantivy) index after write
    │
    └─ Step 8: Cleanup ────────── unload model, persist metadata (mtimes for incremental)
                                  save rustworkx graph to SQLite (warm-start recovery)

Incremental reindex: mtime-based — only changed files are re-processed. Corrupt index detection triggers automatic full rebuild.

Search Pipeline

search("how does auth work")
         │
         ├─► vector_engine.search(query, n=30)  ← cosine similarity on 768-dim embeddings
         │                                         "auth" finds "verify_credentials", "token_check"
         │
         ├─► bm25_engine.search(query, n=30)    ← Tantivy FTS on same LanceDB table
         │                                         fast exact-keyword matching
         │
         ├─► graph_engine.boost(query, n=30)    ← structural relevance score
         │                                         hub symbols (high in/out degree) boosted
         │
         └─► fusion.merge(v_results, b_results, g_results)
                  │
                  │  Reciprocal Rank Fusion: score = Σ weight_i / (k + rank_i)
                  │  default weights: vector=0.5, bm25=0.3, graph=0.2
                  │
                  ├─► reranker.rerank(top_20)   ← FlashRank (optional, 4MB ONNX model, <10ms)
                  │
                  └─► token_budget.truncate()   ← summary / detailed / full
                           │
                           └─► Top-N chunks, scored, formatted

Technology Stack

LayerTechnologyDecision Rationale
Vector storeLanceDBmmap disk-backed → ~20–50 MB overhead vs ChromaDB's in-memory model. Native Tantivy FTS means one store for both vector and BM25. (ADR-002)
Embeddingsbge-small-en (default) or ONNX Runtime + jina-codebge-small-en is lightweight (384-dim, no trust_remote_code). jina-code is code-specific (161M params, 8192 seq len) on ONNX (~50 MB vs PyTorch ~500 MB). Lazy-load/unload keeps RAM flat after indexing. (ADR-003)
Graph enginerustworkx PyDiGraphRust-backed, O(1) node lookup, PageRank + centrality algorithms. Thread-safe with RLock. (ADR-006)
Symbol parsertree-sitter 0.21.325+ languages, incremental parsing, AST-level symbol extraction with metadata. Parallel via ThreadPool. (ADR-005)
Graph parserast-grepStructural pattern matching for call/import/inheritance edges. Sequential run for graph consistency. (ADR-005)
ChunkingSymbol-basedOne chunk per function/class. Deterministic SHA256 IDs prevent duplicate inserts. (ADR-008)
Re-rankerFlashRank (optional)4 MB ONNX cross-encoder, <10 ms on CPU for top-20. Graceful passthrough if not installed.
PersistenceSQLite + LanceDBGraph in SQLite (warm-start recovery), vectors+FTS in LanceDB, mtimes in JSON. Zero-config.
MCP frameworkFastMCP 2.0Stdio transport, automatic tool registration, schema generation.

Token Efficiency

Measured against equivalent agentic file-browsing workflows on a ~10,000-line Python codebase:

TaskWithout Nexus-MCPWith Nexus-MCPReduction
Find relevant code (agent reads 5–10 files)5,000–15,000 tokens500–2,000 tokens70–90%
Understand a symbol (grep + read + trace callers)3,000–8,000 tokens, 3–5 calls800–2,000 tokens, 1 call60–75%
Assess change impact (manual transitive trace)10,000–20,000 tokens1,000–3,000 tokens80–85%
Tool descriptions in context (2 MCP servers)~1,700 tokens (17 tools)~700 tokens (10 tools)~60%
Search precision (keyword-only needs retries)2–3 searches × 2,000 tokens1 hybrid search × 1,500 tokens60–75%

Typical session savings: 15,000–40,000 tokens (30–60%) compared to file-browsing agents.

Three Verbosity Levels

Every tool respects a verbosity parameter — agents request exactly the detail they need:

LevelToken BudgetWhat's Included
summary~500 tokensCounts, scores, file:line pointers only
detailed~2,000 tokensSignatures, types, line ranges, docstrings
full~8,000 tokensFull code snippets, all relationships, metadata

The 10 Tools

v2.0.0 breaking change: find_callers / find_callees / impact merged into graph, overview / architecture merged into map, and remember / recall / forget merged into memory — see CHANGELOG for the old→new mapping and ADR-017 for why. Fewer, richer tools route better under MCP Tool Search than many thin ones.

Discovery & Indexing

ToolUse When
index(path)First action in any session. Supports comma-separated multi-folder paths. Incremental by default, reports progress as it runs, and starts a debounced auto-reindex watcher (NEXUS_AUTO_WATCH) when it finishes.
status()Check index health: symbol count, chunk count, memory usage, engine availability, and a stale / staleness_warning pair if files changed since the last index.
health()Liveness probe — uptime, which engines are ready.
map(detail)Replaces **ls** + manual browsing. detail="summary" (files/languages/quality/top-modules, was overview()), "architecture" (layers/dependencies/classes/entry points/hub symbols, was architecture()), or "full" for both.

Search

ToolUse When
search(query, mode, language, type, n)Primary code discovery. mode: hybrid (default), vector, or bm25. Falls back to live grep if results are sparse. Returns a non-null warning if the index looked stale (a background reindex is triggered automatically; results still return immediately).

Graph Analysis

ToolUse When
find_symbol(name, exact)Look up a specific symbol. exact=False for fuzzy matching.
graph(symbol, direction, transitive, max_depth)direction="callers" (who calls this, was find_callers) or "callees" (what this calls, was find_callees). **transitive=True** — MUST run before any refactor (was impact()): full transitive change blast radius across the graph.
explain(symbol)Replaces **Read** for understanding code. Graph relationships + semantic context + quality metrics in one call.
analyze(path)Code quality: cyclomatic complexity, cognitive complexity, code smells, dependency metrics.

Memory

ToolUse When
memory(action, ...)action="store" (was remember) to persist a decision/note across sessions (types: note, decision, conversation, status, preference, doc; TTL: permanent, month, week, day, session); "search" (was recall) for semantic retrieval; "delete" (was forget) to remove by ID, tag, or type.

Install

From PyPI (recommended)

pip install nexus-mcp-ci

# GPU (CUDA) support — adds ONNX CUDA execution provider
pip install nexus-mcp-ci[gpu]

# FlashRank reranker — adds ~4MB cross-encoder for better search quality
pip install nexus-mcp-ci[reranker]

# Both
pip install nexus-mcp-ci[gpu,reranker]

From Source

git clone https://github.com/jaggernaut007/Nexus-MCP.git
cd Nexus-MCP
./setup.sh           # creates venv, installs, verifies
# or
pip install -e ".[dev]"

Python 3.10–3.12 supported. Python 3.13+ is not yet supported by the current dependency stack, and the packaged Glama/Docker build uses Python 3.12 for compatibility. Optional: rg (ripgrep) for 100% search coverage fallback on unindexed files.

The optional jina-code model requires ONNX Runtime. If you see ONNX/Optimum errors:

pip install "sentence-transformers[onnx]" "optimum[onnxruntime]>=1.19.0"

The default bge-small-en model needs neither ONNX nor trust_remote_code.


MCP Client Setup

Claude Code

# Minimal
claude mcp add nexus-mcp-ci -- nexus-mcp-ci

# With the code-specific embedding model (requires trust_remote_code)
claude mcp add nexus-mcp-ci -e NEXUS_EMBEDDING_MODEL=jina-code -- nexus-mcp-ci

# GPU embeddings
claude mcp add nexus-mcp-ci -e NEXUS_EMBEDDING_DEVICE=cuda -- nexus-mcp-ci

# Virtualenv install — pass the full binary path
claude mcp add nexus-mcp-ci -- /path/to/.venv/bin/nexus-mcp-ci

Claude Desktop

~/Library/Application Support/Claude/claude_desktop_config.json (macOS):

{
  "mcpServers": {
    "nexus-mcp-ci": {
      "command": "nexus-mcp-ci",
      "args": [],
      "env": {
        "NEXUS_EMBEDDING_MODEL": "jina-code"
      }
    }
  }
}

Cursor / Windsurf / Cline / Any MCP Client

{
  "nexus-mcp-ci": {
    "command": "nexus-mcp-ci",
    "transport": "stdio"
  }
}

Agent Integration Patterns

CLAUDE.md boilerplate (drop into project root)

## Code Intelligence — nexus-mcp-ci

Every code task in this project MUST follow this workflow:

1. **Session start**: \`mcp__nexus-mcp__status\` → if not indexed, \`mcp__nexus-mcp__index\`
2. **Before any file read**: \`mcp__nexus-mcp__search\` to locate relevant code
3. **To understand a symbol**: \`mcp__nexus-mcp__explain\` (not Read)
4. **Before refactoring**: \`mcp__nexus-mcp__impact\` to assess blast radius
5. **For project orientation**: \`mcp__nexus-mcp__overview\` or \`mcp__nexus-mcp__architecture\`

Typical agent tool-call sequence

# Session start
status()               → "indexed: True, 8,412 chunks, 1,203 symbols, 87 MB"

# Code discovery
search("JWT token validation", mode="hybrid", n=10)
  → auth/jwt.py:42  validate_token()         score=0.94
  → auth/middleware.py:18  require_auth()    score=0.87
  → tests/test_auth.py:91  test_valid_jwt()  score=0.81

# Deep symbol understanding
explain("validate_token")
  → definition, docstring, params, complexity
  → callers: [require_auth, login_required, api_key_check]
  → callees: [decode_jwt, check_expiry, verify_signature]
  → quality: complexity=6, smells=[], maintainability=A

# Pre-refactor safety check
impact("validate_token")
  → direct callers: 3 symbols
  → transitive impact: 12 symbols across 4 files
  → high-risk: auth/middleware.py (5 dependents)

Multi-folder monorepo indexing

# Index multiple roots in one call — processed sequentially, shared engines
index(path="packages/api/src,packages/shared/src,packages/cli/src")

# Or use the paths parameter for additional roots
index(path="packages/api/src", paths="packages/shared/src,packages/cli/src")

Configuration

All settings via NEXUS_ environment variables:

VariableDefaultDescription
NEXUS_EMBEDDING_MODELbge-small-enbge-small-en (384-dim, lightweight) or jina-code (768-dim, code-optimized)
NEXUS_EMBEDDING_DEVICEautoauto (CUDA → MPS → CPU), cuda, mps, cpu
NEXUS_STORAGE_DIR.nexusIndex storage directory
NEXUS_AUTO_WATCHtrueAuto-reindex on file change via a debounced watcher, started after index()
NEXUS_STALENESS_CHECK_INTERVAL15Seconds between status() / search() staleness checks (throttled, not per-call)
NEXUS_MAX_FILE_SIZE_MB10Skip files larger than this
NEXUS_CHUNK_MAX_CHARS4000Max chars per code chunk
NEXUS_MAX_MEMORY_MB350Memory budget target
NEXUS_SEARCH_MODEhybridhybrid, vector, or bm25
NEXUS_FUSION_WEIGHT_VECTOR0.5Vector score weight in RRF
NEXUS_FUSION_WEIGHT_BM250.3BM25 score weight in RRF
NEXUS_FUSION_WEIGHT_GRAPH0.2Graph score weight in RRF
NEXUS_PERMISSION_LEVELfullfull, read, or restricted
NEXUS_RATE_LIMIT_ENABLEDfalseEnable per-tool token-bucket rate limiting
NEXUS_AUDIT_ENABLEDtrueStructured audit logging with correlation IDs
NEXUS_TRUST_REMOTE_CODEtrueRequired for jina-code; set false with bge-small-en
NEXUS_LOG_LEVELINFOLogging level
NEXUS_LOG_FORMATtexttext or json

Embedding Models

ModelKeyDimsMax SeqBackendtrust_remote_code
BGE Small EN v1.5 (default)bge-small-en384512PyTorchNo
Jina Embeddings v2 Codejina-code7688,192ONNXYes

After changing model, re-index. Embeddings from different models are incompatible.


Comparison

vs. Other MCP Servers

FeatureNexus-MCPSourcegraph MCPGreptile MCPGitHub MCPtree-sitter MCP
Fully local / private❌ infra required❌ cloud❌ cloud
Semantic (vector) search❌ keyword only✅ LLM-based
Keyword (BM25) search
Hybrid fusion (RRF)
Code graph (call/import)✅ rustworkx✅ SCIP
Re-ranking✅ FlashRank
Semantic memory (persistent)✅ 6 types
Change impact analysispartial
Token-budgeted responses✅ 3 levels
Languages25+30+manymanymany
CostPaid license$$$$40/mo$10–39/moFree
API keys requiredNoYesYesYesNo

vs. AI Code Tools

CapabilityNexus-MCPCursorCopilot @workspaceCodyContinue.devAider
IDE-agnostic
MCP-nativepartial✅ client
Fully localpartialpartial
Hybrid searchunknownunknownkeywordyes
Code graphunknownunknown✅ SCIPbasic
Semantic memory✅ persistent
Token-budgeted output
Open source❌ all rights reservedpartial
CostPaid license$20–40/mo$10–39/mo$0–49/moFreeFree

Development

git clone https://github.com/jaggernaut007/Nexus-MCP.git
cd Nexus-MCP
pip install -e ".[dev]"

pytest -v                    # 441 tests
pytest -m "not slow"         # skip performance benchmarks
pytest tests/test_search.py  # single module
ruff check .                 # lint

Project Structure

src/nexus_mcp/
├── server.py              # FastMCP entrypoint — 10 tools, input validation, graceful shutdown
├── config.py              # Settings (NEXUS_ env prefix)
├── state.py               # Global singleton SessionState
├── core/
│   ├── models.py          # Symbol, ParsedFile, CodebaseIndex, Memory
│   ├── graph_models.py    # UniversalNode, Relationship
│   ├── interfaces.py      # IParser, IEngine protocols
│   └── exceptions.py      # NexusException hierarchy
├── parsing/
│   ├── treesitter_parser.py   # Symbol extraction (parallel)
│   ├── astgrep_parser.py      # Structural graph extraction (sequential)
│   ├── language_registry.py   # 25+ language definitions
│   └── file_watcher.py        # Debounced watchdog for live reindex
├── engines/
│   ├── vector_engine.py   # LanceDB cosine similarity search
│   ├── bm25_engine.py     # LanceDB native FTS (Tantivy)
│   ├── graph_engine.py    # rustworkx PyDiGraph with RLock
│   ├── fusion.py          # Reciprocal Rank Fusion
│   └── reranker.py        # FlashRank (optional, graceful degradation)
├── indexing/
│   ├── pipeline.py        # 8-step indexing pipeline
│   ├── embedding_service.py   # ONNX Runtime, GPU/MPS auto-detect
│   ├── parallel_indexer.py    # ThreadPool over files
│   └── chunker.py         # Symbol → CodeChunk with deterministic IDs
├── memory/
│   └── memory_store.py    # LanceDB-backed memory, TTL, 6 types
├── analysis/
│   └── code_analyzer.py   # Cyclomatic/cognitive complexity, smells
├── security/
│   ├── permissions.py     # READ/MUTATE/WRITE tool categories
│   └── rate_limiter.py    # Token-bucket, per-tool, thread-safe
└── middleware/
    └── audit.py           # Structured audit logs, correlation IDs, field redaction

Adding a New Tool

  1. Add the handler function to server.py decorated with @mcp.tool()
  2. Add inline validation (_validate_* helpers in server.py) for any new input
  3. Add permission category to security/permissions.py
  4. Write tests in tests/
  5. Update self_test/demo_mcp.py to exercise the tool

Adding a New Language

  1. Add entry to parsing/language_registry.py with the tree-sitter grammar
  2. Add structural patterns to parsing/astgrep_parser.py for call/import extraction
  3. Add test fixtures in tests/fixtures/

Self-Test

Verify your installation exercises all 10 tools end-to-end:

python self_test/demo_mcp.py                   # built-in sample project
python self_test/demo_mcp.py /path/to/project  # your own codebase

Expected output: all 10 tools exercised with pass/fail per tool and a summary.


Known Limitations

  • Sequential graph parsing: ast-grep runs sequentially (not parallel) to keep the call graph consistent. This is the main indexing bottleneck on large codebases.
  • bge-small-en uses PyTorch: The lightweight model uses PyTorch instead of ONNX, so it doesn't benefit from the same ~50 MB footprint as jina-code.
  • No incremental graph updates: Graph is rebuilt in full on incremental reindex (only vector/BM25 are incremental at the chunk level).
  • No SSE transport: Only stdio transport is currently supported.
  • Language coverage: 25+ languages, but structural relationship extraction (callers/callees) is most accurate for Python, TypeScript, JavaScript, Go, and Rust. Other languages may have partial graph edges.
  • Static call graph only: find_callers / find_callees / impact are built from static parsing, not runtime tracing — dynamic dispatch, monkey-patching, and calls made through callbacks/closures/reflection won't show up as edges. Treat impact as a lower bound on blast radius in highly dynamic code.
  • Auto-reindex has a detection lag: with the file watcher enabled (default), edits are picked up after a short debounce, and status() / search() run a throttled staleness check as a backstop — not an instant, per-call guarantee of freshness.

Architecture Decision Records

Key decisions are documented in docs/adr/:

ADRDecision
ADR-001Merge two MCP servers into one
ADR-002LanceDB over ChromaDB
ADR-003ONNX Runtime over PyTorch for embeddings
ADR-004bge-small-en as default embedding model
ADR-005Dual parser: tree-sitter + ast-grep
ADR-006rustworkx for graph algorithms
ADR-00712-column PyArrow schema for LanceDB
ADR-008Symbol-based chunking with deterministic IDs
ADR-0098-step indexing pipeline
ADR-010Graph tools API: serialization, ambiguity handling
ADR-011Graceful shutdown, corruption recovery, JSON logging
ADR-012READ/MUTATE/WRITE permission categories
ADR-013Pydantic v2 I/O schemas — superseded by ADR-016 (never wired in, deleted)
ADR-014Token-bucket rate limiting (off by default)
ADR-015Auto-watch + throttled staleness detection
ADR-016Removal of unused Pydantic schemas (supersedes ADR-013)
ADR-017Tool consolidation 15→10, action-aware permission categories

Documentation


Acknowledgments

Nexus-MCP consolidates two earlier open-source projects:

  • CodeGrok MCP by rdondeti (Ravitez Dondeti, MIT) — Contributed the symbol extraction pipeline, embedding service, parallel indexer, core data models, and memory retrieval system.
  • code-graph-mcp by entrepeneur4lyf — Contributed the ast-grep structural parser, rustworkx graph engine, complexity analysis, and relationship extraction.

Source files retain "Ported from" attribution in their module docstrings. See ADR-001 for the consolidation rationale.


License

PolyForm Noncommercial License 1.0.0. Free to use, copy, modify, and distribute for any noncommercial purpose. Commercial use requires a separate license — contact Shreyas Jagannath to inquire.

Versions published before 2.0.1 (0.1.0, 0.1.1, 2.0.0) remain available under their original MIT terms for anyone who obtained them under that license.

Available Tools

10 tools

analyze AnalyzeA

Use for code review or quality assessment — preferred over manually reading files to eyeball complexity, since it computes cyclomatic/ cognitive complexity, dependency analysis, code smells (long/complex functions, large classes, dead code), and an overall quality score in one call. Read-only; requires an index (see index). Optionally scope to a subdirectory or file via path to keep results focused and fast on large codebases — omit it to analyze the whole indexed codebase.

ParametersJSON Schema

NameRequiredDescriptionDefault
pathNoOptional relative path to filter analysis (subdirectory or file)

Output Schema

ParametersJSON Schema

NameRequiredDescription
No output parameters

TDQS

A4.5/5.0

Behavior4/5

Conciseness5/5

Completeness5/5

Parameters4/5

Purpose5/5

Usage Guidelines4/5

explain ExplainA

Use for onboarding to an unfamiliar symbol — combines its call-graph relationships, related code found via semantic search, and quality metrics in one call, so Read is often unnecessary. Use verbosity='summary' for a quick look, 'full' when you need everything.

ParametersJSON Schema

NameRequiredDescriptionDefault
verbosityNoOutput detail level: 'summary', 'detailed', or 'full'detailed
symbol_nameYesName of the symbol to explain

Output Schema

ParametersJSON Schema

NameRequiredDescription
No output parameters

TDQS

A4.4/5.0

Behavior4/5

Conciseness5/5

Completeness4/5

Parameters4/5

Purpose5/5

Usage Guidelines4/5

find_symbol Find SymbolA

Use to look up a specific function/class/symbol by name — preferred over Grep since it returns the definition plus its call-graph relationships in one call. Set exact=False for fuzzy substring matching when unsure of the exact name.

ParametersJSON Schema

NameRequiredDescriptionDefault
nameYesSymbol name (e.g. 'create_server', 'TokenBudget')
exactNoTrue for exact match, False for fuzzy substring

Output Schema

ParametersJSON Schema

NameRequiredDescription
No output parameters

TDQS

A4.2/5.0

Behavior3/5

Conciseness5/5

Completeness4/5

Parameters4/5

Purpose5/5

Usage Guidelines4/5

graph GraphA

Use to trace who calls a function (direction='callers'), what it calls (direction='callees'), or — with transitive=True — the full transitive blast radius of changing it. MUST use transitive=True before refactoring or editing a widely-shared symbol; grep can't show transitive impact.

ParametersJSON Schema

NameRequiredDescriptionDefault
directionNo'callers' (who calls this) or 'callees' (what this calls)callers
max_depthNoMax traversal depth when transitive=True (default 10)
transitiveNoTrue = full transitive closure for change-impact analysis (MUST use before refactoring a shared symbol). Only valid with direction='callers'.
symbol_nameYesName of the function/symbol to trace

Output Schema

ParametersJSON Schema

NameRequiredDescription
No output parameters

TDQS

A4.7/5.0

Behavior4/5

Conciseness5/5

Completeness5/5

Parameters4/5

Purpose5/5

Usage Guidelines5/5

health HealthA

Use for liveness/readiness probes only (uptime, which engines are up) — not for checking whether the index is fresh or complete; use status for that.

ParametersJSON Schema

NameRequiredDescriptionDefault
No parameters

Output Schema

ParametersJSON Schema

NameRequiredDescription
No output parameters

TDQS

A4.7/5.0

Behavior4/5

Conciseness5/5

Completeness5/5

Parameters4/5

Purpose5/5

Usage Guidelines5/5

index IndexA

Use first on any new or changed codebase, before any other tool — everything except status / health requires an index. Supports comma-separated paths for multi-folder/monorepo indexing (processed sequentially to keep RAM low). Incremental by default once an index exists, and reports live progress instead of blocking silently. After this completes, a file watcher keeps the index fresh automatically (NEXUS_AUTO_WATCH) — re-running index manually is rarely needed.

ParametersJSON Schema

NameRequiredDescriptionDefault
pathYesAbsolute path to the codebase directory (or comma-separated paths)
pathsNoAdditional comma-separated paths to index

Output Schema

ParametersJSON Schema

NameRequiredDescription
No output parameters

TDQS

A4.7/5.0

Behavior5/5

Conciseness5/5

Completeness5/5

Parameters3/5

Purpose5/5

Usage Guidelines5/5

map MapA

PREFERRED over Glob/ls/manual browsing for project understanding. Use 'summary' for a quick project orientation, 'architecture' for design/dependency structure, 'full' for both in one call.

ParametersJSON Schema

NameRequiredDescriptionDefault
detailNo'summary' (files/languages/quality/top-modules), 'architecture' (layers/dependencies/classes/entry points/hub symbols), or 'full' (both)summary

Output Schema

ParametersJSON Schema

NameRequiredDescription
No output parameters

TDQS

A4.1/5.0

Behavior3/5

Conciseness5/5

Completeness4/5

Parameters4/5

Purpose4/5

Usage Guidelines5/5

memory MemoryA

Persist and retrieve project context across sessions. Use action='store' to save a decision/note, action='search' to find memories by semantic similarity, action='delete' to clean up by ID, tags, or type.

ParametersJSON Schema

NameRequiredDescriptionDefault
ttlNoTime-to-live for action='store': 'permanent', 'month', 'week', 'day', 'session'permanent
tagsNoComma-separated tags (all actions)
limitNoMax results (action='search', default 5)
queryNoNatural language search query (action='search')
actionYes'store' (was remember), 'search' (was recall), or 'delete' (was forget)
contentNoMemory content to store (action='store')
projectNoProject name for scoping (action='store')default
memory_idNoSpecific memory ID to delete (action='delete')
memory_typeNoType/filter, e.g. 'note', 'decision' (store: type; search/delete: filter)

Output Schema

ParametersJSON Schema

NameRequiredDescription
No output parameters

TDQS

A4.2/5.0

Behavior4/5

Conciseness5/5

Completeness4/5

Parameters3/5

Purpose5/5

Usage Guidelines4/5

search SearchA

Use for any "where is/how does/find" code question — preferred over Grep/Glob, and usually answerable from the returned code_snippet without a follow-up Read. Falls back to live grep automatically when hybrid results are sparse. Returns a non-null warning if the index looked stale (a background reindex is triggered; results still return now).

ParametersJSON Schema

NameRequiredDescriptionDefault
modeNoSearch mode: 'hybrid', 'vector', or 'bm25'hybrid
limitNoMax results (default 10, max 100)
queryYesNatural language or code query (e.g. 'retry logic')
rerankNoFlashRank reranking (default True)
languageNoFilter by language (e.g. 'python')
live_grepNoForce live-grep fallback (rg/grep)
symbol_typeNoFilter by type (e.g. 'function', 'class')

Output Schema

ParametersJSON Schema

NameRequiredDescription
No output parameters

TDQS

A4.2/5.0

Behavior4/5

Conciseness5/5

Completeness4/5

Parameters3/5

Purpose5/5

Usage Guidelines4/5

status StatusA

Use at the start of a session, or when unsure if search results might be stale. Reports whether a codebase is indexed, index size/engine availability, memory usage, and a stale/staleness_warning pair if files changed since the last index (a background reindex is auto-triggered).

ParametersJSON Schema

NameRequiredDescriptionDefault
No parameters

Output Schema

ParametersJSON Schema

NameRequiredDescription
No output parameters

TDQS

A4.5/5.0

Behavior4/5

Conciseness5/5

Completeness5/5

Parameters4/5

Purpose5/5

Usage Guidelines4/5

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 3 tool updates Sep 18, 2026
  2. 7 tool updates v1.0.4 Jul 23, 2026

TDQS

A4.4/5.0

Scored across 10 tools

Disambiguation5/5

Naming Consistency4/5

Tool Count5/5

Completeness4/5

Maintenance

ActivityNo data

ResponsivenessNo issues