trace-mcp
Your AI agent reads
UserController.phpand sees a class. trace-mcp reads it and sees a route → controller → FormRequest → Eloquent model → Inertia render → Vue page → child components — in one graph.
What trace-mcp does for you
You ask | trace-mcp answers | How |
"What breaks if I change this model?" | Blast radius across languages + risk score + linked architectural decisions |
|
"Why was auth implemented this way?" | The actual decision record with reasoning and tradeoffs |
|
"I'm starting a new task" | Optimal code subgraph + relevant past decisions + dead-end warnings |
|
"What did we discuss about GraphQL last month?" | Verbatim conversation fragments with file references |
|
"Show me the request flow from URL to rendered page" | Route → Middleware → Controller → Service → View with prop mapping |
|
"Find all untested code in this module" | Symbols classified as "unreached" or "imported but never called in tests" |
|
"What's the impact of this API change on other services?" | Cross-subproject client calls with confidence scores |
|
"Orient me — I just opened this project" | Project identity + active decisions + memory stats in ~300 tokens |
|
Three things no other tool does:
Framework-aware edges — trace-mcp understands that
Inertia::render('Users/Show')connects PHP to Vue, that@Injectable()creates a DI dependency, that$user->posts()means apoststable from migrations. 53 integrations across 14 frameworks, 7 ORMs, 12 UI libraries.Code-linked decision memory — when you record "chose PostgreSQL for JSONB support", it's linked to
src/db/connection.ts::Pool#class. When someone runsget_change_impacton that symbol, they see the decision. MemPalace stores decisions as text; trace-mcp ties them to the dependency graph.Cross-session intelligence — past sessions are mined for decisions and indexed for search. When you start a new session,
get_wake_upgives you orientation in ~300 tokens;plan_turnshows relevant past decisions for your task;get_session_resumecarries over structural context from previous sessions.
Related MCP server: LiLBrain
The problem
AI coding agents are language-aware but framework-blind.
They don't know that Inertia::render('Users/Show', $data) connects a Laravel controller to resources/js/Pages/Users/Show.vue. They don't know that $user->posts() means the posts table defined three migrations ago. They can't trace a request from URL to rendered pixel.
So they brute-read files, guess at relationships, and miss cross-language edges entirely. The bigger the project, the worse it gets.
The solution
trace-mcp builds a cross-language dependency graph from your source code and exposes it through the Model Context Protocol. Any MCP-compatible agent (Claude Code, Cursor, Windsurf, etc.) gets framework-level understanding out of the box.
Without trace-mcp | With trace-mcp |
Agent reads 15 files to understand a feature |
|
Agent doesn't know which Vue page a controller renders |
|
"What breaks if I change this model?" — agent guesses |
|
Schema? Agent needs a running database | Migrations parsed — schema reconstructed from code |
Prop mismatch between PHP and Vue? Discovered in production | Detected at index time — PHP data vs. |
How trace-mcp compares
trace-mcp is not just a code intelligence server — it combines code graph navigation, cross-session memory, and real-time code understanding in a single tool. Other projects solve one of these; trace-mcp unifies all three.
Last updated: April 2026. Based on public documentation and GitHub repos. If you maintain one of these projects and see an inaccuracy, open an issue.
vs. token-efficient code exploration
Tools that help AI agents read code with fewer tokens — AST parsing, outlines, context packing.
Capability | trace-mcp | Repomix | Context Mode | code-review-graph | jCodeMunch | codebase-memory-mcp | cymbal |
GitHub stars | — | 23K | 6.6K | 5.1K | 1.5K | 1.3K | 137 |
Tree-sitter AST parsing | ✅ 68 languages | ✅ compress only (~20) | ❌ no code parsing | ✅ | ✅ ~40 languages | ✅ 66 languages | ✅ 22 languages |
Token-efficient symbol lookup | ✅ outlines, symbols, bundles | ❌ packs entire files | ✅ sandboxed output | ✅ | ✅ core focus | ✅ | ✅ outline/show/context |
Cross-file dependency graph | ✅ directed edge graph | ❌ | ❌ | ✅ knowledge graph | ✅ import graph | ✅ knowledge graph | ✅ refs/importers |
Framework-aware edges | ✅ 53 integrations (14 frameworks, 7 ORMs, 12 UI libs) | ❌ | ❌ | ❌ | ✅ 21 frameworks (route/middleware) | partial (REST routes) | ❌ |
Impact analysis | ✅ reverse dep traversal + decorator filter | ❌ | ❌ | ❌ | ✅ blast radius + decorator filter | ✅ detect_changes | ✅ impact command |
Call graph | ✅ bidirectional, graph-based | ❌ | ❌ | ❌ | ✅ AST-based, bidirectional | ✅ trace_call_path | ✅ refs/importers |
Refactoring tools | ✅ rename, extract, dead code, codemod | ❌ | ❌ | ❌ | ❌ (dead code detect only) | ❌ | ❌ |
Security scanning | ✅ OWASP Top-10, taint | ✅ Secretlint | ❌ | ❌ | ❌ | ❌ | ❌ |
Multi-repo subprojects | ✅ cross-repo API linking | ✅ remote repos | ❌ | ❌ | ✅ GitHub repos | ❌ | ❌ |
Session memory | ✅ built-in | ❌ | ✅ SQLite journal | ❌ | ✅ index persistence | ✅ persistent graph | ❌ |
Written in | TypeScript | TypeScript | TypeScript | Python | Python | C | Go |
vs. AI session memory
Tools that persist context across AI agent sessions — activity logs, knowledge graphs, memory compression.
Capability | trace-mcp | MemPalace | claude-mem | OpenMemory | engram | ConPort |
GitHub stars | — | 43K | 45.7K | 3.9K | 2.3K | 761 |
Cross-session context carryover | ✅ | ✅ wings/rooms | ✅ core focus | ✅ | ✅ | ✅ |
Cross-session content search | ✅ | ✅ ChromaDB semantic | ❌ | ✅ | ❌ | ❌ |
Decision knowledge graph | ✅ temporal, code-linked | ✅ temporal (text-only) | ❌ | ✅ temporal | ❌ | ✅ project-level |
Code-graph-aware memory | ✅ decisions → symbols & files | ❌ text-only | ❌ text-only | ❌ text-only | ❌ text-only | ❌ text-only |
Auto-extraction from sessions | ✅ pattern-based (0 LLM calls) | ✅ via hooks | ✅ AI-compressed | ❌ | ❌ | ❌ |
Wake-up context | ✅ ~300 tok (code-linked decisions) | ✅ ~170 tok (AAAK) | ❌ | ❌ | ❌ | ❌ |
Decision enrichment in tools | ✅ impact/plan_turn/resume | ❌ standalone | ❌ | ❌ | ❌ | ❌ |
Service/subproject scoping | ✅ decisions per service | ✅ wings per project | ❌ | ❌ | ❌ | ❌ |
Token usage analytics | ✅ per-tool cost breakdown | ❌ | partial | ❌ | ❌ | ❌ |
Code intelligence included | ✅ 130+ tools | ❌ | ❌ | ❌ | ❌ | ❌ |
Works as standalone memory | ❌ code-focused | ✅ general-purpose | ❌ Claude-specific | ✅ agent-agnostic | ✅ agent-agnostic | ✅ project-scoped |
Written in | TypeScript | Python | TypeScript | TS + Python | Go | Python |
Key difference: MemPalace stores "decided to use PostgreSQL" as text in ChromaDB. trace-mcp stores the same decision linked to
src/db/connection.ts::Pool#class— and when you runget_change_impacton that symbol, the decision shows up inlinked_decisions. General-purpose memory tools remember what you said. trace-mcp remembers what you said AND which code it's about.
vs. documentation generation & RAG
Tools that generate docs from code or provide embedding-based code search for AI retrieval.
Capability | trace-mcp | Repomix | DeepContext | smart-coding-mcp | mcp-local-rag¹ | knowledge-rag¹ |
GitHub stars | — | 23K | 274 | 193 | 204 | 44 |
Real-time code understanding | ✅ live graph, always current | ❌ snapshot at pack time | ❌ manual reindex | partial (opt-in watcher) | ❌ | partial (file watcher) |
Auto-generated project docs | ✅ | ❌ raw file dump | ❌ | ❌ | ❌ | ❌ |
Semantic code search | ✅ | ❌ no search | ✅ Jina embeddings | ✅ nomic embeddings | ✅ vector search | ✅ hybrid + reranking |
Framework-aware context | ✅ routes, models, components | ❌ | ❌ | ❌ | ❌ | ❌ |
Task-focused context | ✅ | ❌ packs everything | ❌ | ❌ | ❌ | ❌ |
No doc maintenance needed | ✅ derived from code | ✅ repacks on demand | ❌ manual reindex | partial (auto on startup) | ❌ manual ingest | partial (auto-reindex) |
Works offline, no API keys | ✅ graph + FTS5 + bundled ONNX embeddings | ✅ | ❌ requires cloud API | ❌ requires local embeddings | ❌ requires local embeddings | ❌ requires local embeddings |
Incremental updates | ✅ file watcher, content hash | ❌ full repack | ✅ SHA-256 hashing | ✅ file hash + opt-in watcher | ❌ | ✅ mtime + dedup |
Written in | TypeScript | TypeScript | TypeScript | JavaScript | TypeScript | Python |
¹ mcp-local-rag and knowledge-rag are document RAG tools (PDF, DOCX, Markdown) — not code-specific. Included for comparison as they occupy adjacent mindshare.
Key difference: RAG tools answer "find code similar to this query." trace-mcp answers "show me the execution path, the dependencies, and the tests for this feature." Graph traversal finds structurally relevant code that embedding similarity misses — and never returns stale results because the graph updates incrementally with every file save.
vs. code graph MCP servers
Capability | trace-mcp | Serena | code-review-graph | codebase-memory-mcp | SocratiCode | Narsil-MCP | Roam-Code |
GitHub stars | — | 22.6K | 5.1K | 1.3K | — | — | — |
Languages | 68 | ~20 (via LSP) | ~10 | 66 | ~15 | 32 | ~10 |
Framework integrations | 53 (14 fw + 7 ORM + 12 UI + 20 other) | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ |
Cross-language edges | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ |
MCP tools | 120+ | ~35 | ~15 | ~20 | ~25 | 90 | 139 |
Session memory | ✅ | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ |
CI/PR reports | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | ❌ |
Multi-repo subprojects | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ |
Security scanning | ✅ | ❌ | ❌ | ❌ | ❌ | ✅ | ❌ |
Refactoring tools | ✅ | ✅ rename, symbol editing | ❌ | ❌ | ❌ | ❌ | ❌ |
Architecture governance | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | ✅ |
Token savings tracking | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ | ❌ |
Written in | TypeScript | Python | Python | C | TypeScript | Rust | Python |
Why framework awareness matters: A graph that knows
UserControllerexists but doesn't know it rendersUsers/Show.vuevia Inertia is missing the edges that matter most. Framework integrations turn a syntax graph into a semantic graph — the agent sees the same connections a developer sees.
Up to 99% token reduction — real-world benchmark
AI agents burn tokens reading files they don't need. trace-mcp returns precision context — only the symbols, edges, and signatures relevant to the query.
Benchmark: trace-mcp's own codebase (694 files, 3,831 symbols):
Task Without trace-mcp With trace-mcp Reduction
─────────────────────────────────────────────────────────────────────
Symbol lookup 42,518 tokens 7,353 tokens 82.7%
File exploration 27,486 tokens 548 tokens 98.0%
Search 22,860 tokens 8,000 tokens 65.0%
Find usages 11,430 tokens 1,720 tokens 85.0%
Context bundle 12,847 tokens 4,164 tokens 67.6%
Batch overhead 16,831 tokens 9,031 tokens 46.3%
Impact analysis 49,141 tokens 2,461 tokens 95.0%
Call graph 178,345 tokens 10,704 tokens 94.0%
Type hierarchy 94,762 tokens 1,030 tokens 98.9%
Tests for 22,590 tokens 1,150 tokens 94.9%
Composite task 93,634 tokens 3,836 tokens 95.9%
─────────────────────────────────────────────────────────────────────
Total 572,444 tokens 49,997 tokens 91.3%91% fewer tokens to accomplish the same code understanding tasks. That's ~522K tokens saved per exploration session — more headroom for actual coding, fewer context window evictions, lower API costs.
Savings scale with project size. On a 650-file project, trace-mcp saves ~522K tokens. On a 5,000-file enterprise codebase, savings grow non-linearly — without trace-mcp, the agent reads more wrong files before finding the right one. With trace-mcp, graph traversal stays O(relevant edges), not O(total files).
Composite tasks deliver the biggest wins. A single get_task_context call replaces a chain of ~10 sequential operations (search → get_symbol × 5 → Read × 3 → Grep × 2). That's one round-trip instead of ten, with 90%+ token reduction.
Per-task breakdown — what it actually costs to answer common questions:
Question | Naive approach | trace-mcp tool | Tokens (naive) | Tokens (trace-mcp) | Reduction |
"Where is | Grep all .ts files |
| ~12,400 | ~800 | 93% |
"What calls | Grep + Read 8 files |
| ~18,200 | ~1,100 | 94% |
"What breaks if I rename | Manual trace across 40+ files |
| ~62,000 | ~2,400 | 96% |
"Find all tests for | Glob + Read 12 test files |
| ~14,800 | ~650 | 96% |
"Understand the indexing pipeline" | Read 15 source files |
| ~89,000 | ~7,200 | 92% |
"Unused exports in src/tools/" | Read + Grep all files |
| ~38,000 | ~1,800 | 95% |
"All OpenAPI endpoints in the project" | Find + Read all .yaml/.json |
| ~22,000 | ~900 | 96% |
Measured using benchmark_project — runs eleven real task categories (symbol lookup, file exploration, text search, find usages, context bundle, batch overhead, impact analysis, call graph traversal, type hierarchy, tests-for, composite task context) against the indexed project. "Without trace-mcp" = estimated tokens from equivalent Read/Grep/Glob operations (full file reads, grep output). "With trace-mcp" = actual tokens returned by trace-mcp tools (targeted symbols, outlines, graph results). Token counts estimated using trace-mcp's built-in savings tracker.
Reproduce it yourself:
# Via MCP tool
benchmark_project # runs against the current project
# Or via CLI
trace-mcp benchmark /path/to/projectKey capabilities
Request flow tracing — URL → Route → Middleware → Controller → Service, across 18 backend frameworks
Component trees — render hierarchy with props / emits / slots (Vue, React, Blade)
Schema from migrations — no DB connection needed
Event chains — Event → Listener → Job fan-out (Laravel, Django, NestJS, Celery, Socket.io)
Change impact analysis — reverse dependency traversal across languages, enriched with linked architectural decisions
Decision memory — mine sessions for decisions, link them to code symbols/files, query with temporal validity. Decisions auto-surface in
get_change_impact,plan_turn, andget_session_resumeCross-session search — "what did we discuss about auth?" — FTS5 search across all past session content
Graph-aware task context — describe a dev task → get the optimal code subgraph (execution paths, tests, types) + relevant past decisions, adapted to bugfix/feature/refactor intent
CI/PR change impact reports — automated blast radius, risk scoring, test gap detection, architecture violation checks on every PR
Call graph & DI tree — bidirectional call graphs with 4-tier resolution confidence, optional LSP enrichment for compiler-grade accuracy, NestJS dependency injection
ORM model context — relationships, schema, metadata for 7 ORMs
Dead code & test gap detection — find untested exports/symbols (with "unreached" vs "imported_not_called" classification), dead code, per-symbol test reach in impact analysis
Security scanning & MCP server analysis — OWASP Top-10 pattern scanning, taint analysis (source→sink data flow), MCP security context export for skill-scan enrichment (tool annotations verification, capability classification, sensitive data flows)
Multi-service subprojects — link graphs across services via API contracts; cross-service impact analysis; service-scoped decisions
AI-powered analysis — semantic search with zero-config local ONNX embeddings (no API keys needed), plus optional LLM summarization via Ollama/OpenAI
Supported stack
Languages (68): PHP, TypeScript/JavaScript, Python, Go, Java, Kotlin, Ruby, Rust, C, C++, C#, Swift, Objective-C, Dart, Scala, Groovy, Elixir, Erlang, Haskell, Gleam, Bash, Lua, Perl, GDScript, R, Julia, Nix, SQL, HCL/Terraform, Protocol Buffers, Vue SFC, HTML, CSS/SCSS/SASS/LESS, XML/XUL/XSD, YAML, JSON, TOML, Assembly, Fortran, AutoHotkey, Verse, AL, Blade, EJS, Zig, OCaml, Clojure, F#, Elm, CUDA, COBOL, Verilog/SystemVerilog, GLSL, Meson, Vim Script, Common Lisp, Emacs Lisp, Dockerfile, Makefile, CMake, INI, Svelte, Markdown, MATLAB, Lean 4, FORM, Magma, Wolfram/Mathematica
Frameworks: Laravel (+ Livewire, Nova, Filament, Pennant), Django (+ DRF), FastAPI, Flask, Express, NestJS, Fastify, Hono, Next.js, Nuxt, Rails, Spring, tRPC
ORMs: Eloquent, Prisma, TypeORM, Drizzle, Sequelize, Mongoose, SQLAlchemy
Frontend: Vue, React, React Native, Blade, Inertia, shadcn/ui, Nuxt UI, MUI, Ant Design, Headless UI
Other: GraphQL, Socket.io, Celery, Zustand, Pydantic, Zod, n8n, React Query/SWR, Playwright/Cypress/Jest/Vitest/Mocha
Full details: Supported frameworks · All tools
Quick start
npm install -g trace-mcp
trace-mcp init # one-time global setup (MCP clients, hooks, CLAUDE.md)
trace-mcp add # register current project for indexingStep 1: init — one-time global setup. Configures your MCP client (Claude Code, Cursor, Windsurf, or Claude Desktop), installs the guard hook, and adds a tool routing guide to ~/.claude/CLAUDE.md.
Step 2: add — registers a project. Detects frameworks and languages, creates the index database, and adds the project to the global registry. Run this in each project you want trace-mcp to understand.
All state lives in ~/.trace-mcp/ — nothing is stored in your project directory (unless you add a .traceignore or .trace-mcp/.config.json).
Start your MCP client and use:
> get_project_map to see what frameworks are detected
> get_task_context("fix the login bug") to get full execution context for a task
> get_change_impact on app/Models/User.php to see what depends on itAdding more projects
cd /path/to/another/project
trace-mcp addOr specify a path directly:
trace-mcp add /path/to/projectList all registered projects:
trace-mcp listUpgrading
After updating trace-mcp (npm update -g trace-mcp), re-run init in your project directory:
trace-mcp initThis runs database migrations, updates MCP client configuration, and reindexes the project with the latest plugins.
Manual setup
If you prefer manual control, see Configuration for all options. You can skip specific init steps:
trace-mcp init --skip-hooks --skip-claude-md --skip-mcp-clientEnabling semantic search
Semantic search works out of the box — just enable AI in your config:
// ~/.trace-mcp/.config.json or project/.trace-mcp/.config.json
{ "ai": { "enabled": true } }The default provider (onnx) uses a bundled local model (Xenova/all-MiniLM-L6-v2, ~23 MB) — no API keys, no external services, fully offline after first model download. Run embed_repo once or just use search with semantic: "on" and embeddings will be computed on demand.
For LLM-powered summarization, switch to ollama or openai provider — see AI configuration.
Indexing details
Automatic: trace-mcp serve starts background indexing immediately and launches a file watcher. The server is ready for tool calls right away — results improve as indexing progresses. If the project isn't registered yet, serve auto-registers it.
Manual: index a project without starting the server:
trace-mcp index /path/to/project # incremental (skips unchanged files)
trace-mcp index /path/to/project --force # full reindexFiles are content-hashed (MD5). On re-index, unchanged files are skipped. Both serve and serve-http start a file watcher that debounces rapid changes (300ms) and processes deletions immediately.
Global directory structure
All trace-mcp state is centralized:
~/.trace-mcp/
.config.json # global config + per-project settings
registry.json # registered projects
topology.db # cross-service topology + subproject graph
decisions.db # decision memory + session content (cross-session knowledge graph)
index/
my-app-a1b2c3d4e5f6.db # per-project databases (named by project + hash)Excluding files from indexing (.traceignore)
Place a .traceignore file in the project root to skip files/directories from indexing entirely (gitignore syntax):
# Skip generated code
generated/
*.generated.ts
# Skip protobuf output
*_pb2.py
*.pb.go
# Negation — re-include a specific path
!generated/keep-this.tsCommon directories (node_modules, .git, dist, build, vendor, etc.) are skipped automatically.
You can also configure ignore rules in ~/.trace-mcp/.config.json (global) or project/.trace-mcp/.config.json (per-project):
{
"ignore": {
"directories": ["proto", "generated"],
"patterns": ["**/fixtures/**"]
}
}Details: Configuration — .traceignore
Getting the most out of trace-mcp
trace-mcp works on three levels to make AI agents use its tools instead of raw file reading:
Level 1: Automatic (works out of the box)
The MCP server provides instructions and tool descriptions with routing hints that tell AI agents when to prefer trace-mcp over native Read/Grep/Glob. This works with any MCP-compatible client — no configuration needed.
Level 2: CLAUDE.md (recommended)
Add this block to your project's CLAUDE.md (or ~/.claude/CLAUDE.md for global use) to reinforce tool routing:
## Code Navigation Policy
Use trace-mcp tools for code intelligence — they understand framework relationships, not just text.
| Task | trace-mcp tool | Instead of |
|------|---------------|------------|
| Find a function/class/method | `search` | Grep |
| Understand a file before editing | `get_outline` | Read (full file) |
| Read one symbol's source | `get_symbol` | Read (full file) |
| What breaks if I change X | `get_change_impact` | guessing |
| All usages of a symbol | `find_usages` | Grep |
| Starting work on a task | `get_task_context` | reading 15 files |
| Quick keyword context | `get_feature_context` | reading 15 files |
| Tests for a symbol | `get_tests_for` | Glob + Grep |
| HTTP request flow | `get_request_flow` | reading route files |
| DB model relationships | `get_model_context` | reading model + migrations |
Use Read/Grep/Glob for non-code files (.md, .json, .yaml, config).
Start sessions with `get_project_map` (summary_only=true).Level 3: Hook enforcement (Claude Code only)
For hard enforcement, install the PreToolUse guard hook that blocks Read/Grep/Glob on source code files and redirects the agent to trace-mcp tools with specific suggestions. The hook is installed globally by trace-mcp init, or manually:
trace-mcp setup-hooks --global # install
trace-mcp setup-hooks --uninstall # removeThis copies the guard script to ~/.claude/hooks/ and adds the hook to your Claude Code settings.
What the hook does:
Blocks Read/Grep/Glob/Bash on source code files (
.ts,.py,.php,.go,.java,.rb, etc.)Allows non-code files (
.md,.json,.yaml,.env, config)Allows Read before Edit — first Read is blocked with a suggestion, retry on the same file is allowed (the agent needs full content for editing)
Allows safe Bash commands (git, npm, build, test, docker, etc.)
Redirects with specific trace-mcp tool suggestions in the denial message
How it works
Source files (PHP, TS, Vue, Python, Go, Java, Kotlin, Ruby, HTML, CSS, Blade)
│
▼
┌──────────────────────────────────────────┐
│ Pass 1 — Per-file extraction │
│ tree-sitter → symbols │
│ integration plugins → routes, │
│ components, migrations, events, │
│ models, schemas, variants, tests │
└────────────────────┬─────────────────────┘
│
▼
┌──────────────────────────────────────────┐
│ Pass 2 — Cross-file resolution │
│ PSR-4 · ES modules · Python modules │
│ Vue components · Inertia bridge │
│ Blade inheritance · ORM relations │
│ → unified directed edge graph │
└────────────────────┬─────────────────────┘
│
▼
┌──────────────────────────────────────────┐
│ Pass 3 — LSP enrichment (opt-in) │
│ tsserver · pyright · gopls · │
│ rust-analyzer → compiler-grade │
│ call resolution, 4-tier confidence │
└────────────────────┬─────────────────────┘
│
▼
┌──────────────────────────────────────────┐
│ SQLite (WAL mode) + FTS5 │
│ nodes · edges · symbols · routes │
│ + embeddings (local ONNX by default) │
│ + optional: LLM summaries │
└────────────────────┬─────────────────────┘
│
▼
┌──────────────────────────────────────────┐
│ Decision Memory (decisions.db) │
│ decisions · session chunks · FTS5 │
│ temporal validity · code linkage │
│ auto-mined from session logs │
└────────────────────┬─────────────────────┘
│
▼
MCP server (stdio or HTTP/SSE)
130+ tools · 2 resourcesIncremental by default — files are content-hashed; unchanged files are skipped on re-index.
Plugin architecture — language plugins (symbol extraction) and integration plugins (semantic edges) are loaded based on project detection, organized into categories: framework, ORM, view, API, validation, state, realtime, testing, tooling.
Details: Architecture & plugin system
Documentation
Document | Description |
Complete list of languages, frameworks, ORMs, UI libraries, and what each extracts | |
All 130+ MCP tools with descriptions and usage examples | |
Config options, AI setup, environment variables, security settings | |
How indexing works, plugin system, project structure, tech stack | |
Decision knowledge graph, session mining, cross-session search, wake-up context | |
Session analytics, token savings tracking, optimization reports, benchmarks | |
Optional tweakcc integration for maximum tool routing enforcement | |
Building, testing, contributing, adding new plugins |
Decision memory
Every conversation with an AI agent produces decisions, discoveries, and preferences that disappear when the session ends. trace-mcp's decision memory captures them and links them to the code they're about.
How it works
Mine —
mine_sessionsscans Claude Code / Claw Code JSONL logs and extracts decisions using pattern matching (no LLM calls). Detects architecture decisions, tech choices, bug root causes, preferences, tradeoffs, discoveries, and conventions.Link — each decision can be linked to a code symbol (
src/auth/provider.ts::AuthProvider#class) or file. When you runget_change_impacton that symbol, the decision shows up automatically.Search —
query_decisionssupports FTS5 full-text search, filtering by type/service/symbol/file/tag, and temporal queries ("what was true in January?").search_sessionssearches raw conversation content across all past sessions.Surface — decisions auto-enrich code intelligence tools:
get_change_impact→linked_decisionson the target + affected filesplan_turn→related_decisionsmatched by task description + target filesget_session_resume→active_decisionsfor project orientation
Decision memory MCP tools
Tool | What it does |
| Extract decisions from session logs (pattern-based, 0 LLM calls) |
| Manually record a decision with code linkage + service scoping |
| Query by type/service/symbol/file/tag + FTS5 search |
| Mark a decision as superseded (preserved for history) |
| Chronological history of decisions for a symbol/file |
| Knowledge graph overview |
| Index session content for cross-session search |
| FTS5 search: "what did we discuss about auth?" |
| Compact orientation (~300 tokens): project + decisions + stats |
Decision memory CLI
trace-mcp memory mine # mine sessions for decisions
trace-mcp memory index # index session content for search
trace-mcp memory search "GraphQL migration" # search past conversations
trace-mcp memory decisions --type tech_choice # list decisions
trace-mcp memory stats # knowledge graph overview
trace-mcp memory timeline --file src/auth.ts # decision history for a fileTemporal validity
Decisions have valid_from / valid_until timestamps. When a decision is superseded, invalidate_decision preserves it for historical queries while excluding it from active results:
query_decisions() → only active decisions
query_decisions(as_of="2025-01-15") → what was true on Jan 15
query_decisions(include_invalidated=true) → full historyService scoping
In projects with multiple services (subprojects), decisions can be scoped:
add_decision(title="Use JWT", service_name="auth-api")
query_decisions(service_name="auth-api") → only auth-api decisions
query_decisions() → all project decisionsDetails: Decision memory
Subprojects
A subproject is any working repository that is part of your project's ecosystem: microservices, frontends, backends, shared libraries, CLI tools, etc.
Each directory with its own root marker (package.json, composer.json, go.mod, etc.) is a subproject. A project contains one or more subprojects; the project itself is not a subproject.
trace-mcp links dependency graphs across subprojects — if subproject A calls an API endpoint in subproject B, trace-mcp knows that changing that endpoint in B breaks clients in A. Subprojects can live inside the project directory or be added from outside.
How it works
Subproject discovery is automatic by default. Every time a project is indexed (serve, serve-http, or index), trace-mcp:
Detects subprojects within the project root:
Docker Compose — parses
docker-compose.yml/compose.ymlFlat workspace — first-level subdirs with root markers (e.g.
project/frontend/+project/backend/)Grouped workspace — two-level structure (e.g.
project/org/service-a/)Monolith fallback — treats root as a single subproject
Registers each subproject bound to the project in
~/.trace-mcp/topology.dbParses API contracts — OpenAPI/Swagger, GraphQL SDL, Protobuf/gRPC
Scans code for HTTP client calls (fetch, axios, Http::, requests, http.Get, gRPC stubs, GraphQL operations)
Links discovered calls to known endpoints from other subprojects
Creates cross-subproject dependency edges
Example
# Index a project — subprojects are auto-detected
cd ~/projects/my-app && trace-mcp add
# → auto-detects: my-app/user-service (has openapi.yaml)
# → my-app/order-service (has axios.get('/api/users/{id}'))
# → links order-service → user-service via /api/users/{id}
# Or add an external subproject manually
trace-mcp subproject add --repo=~/projects/external-auth --project=~/projects/my-app
# Check cross-subproject impact
trace-mcp subproject impact --endpoint=/api/users
# → "GET /api/users/{id} is called by 2 client(s) in 1 subproject(s)"
# [order-service] src/services/user-client.ts:42 (axios, confidence: 85%)Subproject CLI
# Add a subproject (inside or outside project dir)
trace-mcp subproject add --repo=../service-b --project=. [--contract=openapi.yaml] [--name=my-service]
trace-mcp subproject remove <name-or-path>
trace-mcp subproject list [--project=.] [--json]
trace-mcp subproject sync # re-scan all subprojects
trace-mcp subproject impact --endpoint=/api/users [--method=GET] [--service=user-svc]MCP tools
Tool | What it does |
| All subprojects, their connections, and stats |
| Cross-subproject impact: what breaks if endpoint X changes (resolves to symbol level) |
| Find all client calls across subprojects that call a specific endpoint |
| Add a subproject via MCP (bound to current project, or specify |
| Re-scan all subprojects |
Subproject management builds on top of the topology system. See Configuration for options.
CI/PR change impact reports
trace-mcp can generate automated change impact reports for pull requests — blast radius, risk scoring, test coverage gaps, architecture violations, and dead code detection.
CLI usage
# Generate a markdown report for changes between main and HEAD
trace-mcp ci-report --base main --head HEAD
# Output to file
trace-mcp ci-report --base main --head HEAD --format markdown --output report.md
# JSON output
trace-mcp ci-report --base main --head HEAD --format json
# Fail CI if risk level >= high
trace-mcp ci-report --base main --head HEAD --fail-on high
# Index before generating (for CI environments without pre-built index)
trace-mcp ci-report --base main --head HEAD --indexGitHub Action
Add this workflow to get automatic impact reports on every PR:
# .github/workflows/ci.yml (impact-report job runs after build-and-test)
- name: Index project
run: node dist/cli.js index . --force
- name: Generate impact report
run: |
node dist/cli.js ci-report \
--base ${{ github.event.pull_request.base.sha }} \
--head ${{ github.event.pull_request.head.sha }} \
--format markdown \
--output report.md
- name: Post PR comment
uses: marocchino/sticky-pull-request-comment@v2
with:
path: report.mdThe full workflow is in .github/workflows/ci.yml — it runs build → test → impact-report on every PR.
Report sections
Section | What it shows |
Summary | Changed files, affected files count, risk level, gap counts |
Blast Radius | Files transitively affected by changes (depth-2 reverse dependency traversal) |
Test Coverage Gaps | Affected symbols with no matching test file. Per-symbol |
Risk Analysis | Per-file composite score: 30% complexity + 25% churn + 25% coupling + 20% blast radius |
Architecture Violations | Layer rule violations involving changed files (auto-detects clean architecture / hexagonal presets) |
Dead Code | New exports in changed files that nothing imports |
Best for
Full-stack projects in any supported framework combination
Teams using AI agents (Claude, Cursor, Windsurf) for day-to-day development
Multi-language codebases where PHP ↔ JavaScript ↔ Python boundaries create blind spots
Monorepos with multiple services and shared libraries
Microservice architectures where API changes ripple across repos
Large codebases where agents waste tokens re-reading files
License
Built by Nikolai Vysotskyi
Available Tools
28 toolsbatchARead-onlyIdempotent
Execute multiple trace-mcp tools in a single MCP request. Returns results for all calls. Use to reduce round-trips when you need several independent queries (e.g., get_outline for 3 files, or search + get_symbol together). Read-only (delegates to other tools). Returns JSON: { batch_results: [{ tool, result }], total }.
| Name | Required | Description | Default |
|---|---|---|---|
| calls | Yes | Array of tool calls to execute (max 10) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already signal readOnly and non-destructive. The description adds useful behavioral context beyond that: it delegates to other tools, is read-only, and returns a JSON structure of batch_results. This informs the agent of the delegation behavior and output shape without contradicting the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences, each earning its place: purpose, when to use, and return format. It is front-loaded and avoids fluf or redundant schema repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with no output schema, the return JSON is described well, and the read-only/delegation behavior is stated. The description could also cover per-call error propagation or ordering guarantees, but these are minor given the tools's simple batch semantics and strong annotations.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is satisfied; the description goes further by showing what kinds of calls to batch with examples like 'get_outline for 3 files' and 'search + get_symbol together.' This makes the calls parameter more tangible without repeating the schema details.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb and resource: 'execute multiple trace-mcp tools in a single MCP request.' It clearly identifies the tool as a batching/composite operation, distinguishing it from the individual sibling tools by its aggregation behavior.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly states when to use it: 'reduce round-trips when you need several independent queries' and gives concrete examles such as 'get_outline for 3 files, or search + get_symbol together.' It does not explicitly mention when not to use it, so it stops short of a 5, but the context is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
find_usagesARead-onlyIdempotent
Find all places that reference a symbol or file (imports, calls, renders, dispatches). Use instead of Grep for symbol usages — understands semantic relationships, not just text matches. For bidirectional call graph use get_call_graph instead. By default, weakly-grounded text_matched edges into a target whose simple name collides with many other symbols are dropped (phantom god-node filter). Pass include_ambiguous_text_matched: true to keep them. Read-only. Returns JSON: { references: [{ file, line, kind, context }], total, ambiguous_filtered? }.
| Name | Required | Description | Default |
|---|---|---|---|
| fqn | Yes | Fully qualified name to find references for | |
| file_path | Yes | File path to find references for | |
| symbol_id | Yes | Symbol ID to find references for | |
| detail_level | No | Output verbosity. "minimal" returns ~40-60% fewer tokens (drops scores, fqn, signatures, summaries — keeps name/file/line). Use when you only need to pick a candidate before drilling in with get_symbol. Default: "default". | |
| include_ambiguous_text_matched | No | Keep text_matched edges whose target name collides with >=3 other symbols (default false — they produce phantom god-nodes). |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare read-only/idempotent behavior, and the description adds meaningful operational detail: the default dropping of weakly-grounded text_matched edges with the phantom god-node rationale, plus the exact JSON return shape. This goes well beyond what annotations alone provide.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact yet information-dense, front-loading the core purpose and usage guidance before behavioral details and return format. Every sentence adds operational value; there is no filler or repetition of schema content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a complex reference-finding tool with no output schema, the description supplies the return JSON shape, keys, optional ambiguity filter, and clear sibling differentiation. All five parameters are covered in the schema, and the description fills the remaining behavioral gaps needed for correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so baseline is 3. The description adds semantic context for include_ambiguous_text_matched ('weakly-grounded', 'phantom god-node filter') beyond what the schema states, and clarifies the intent of the return fields. It does not need to restate every parameter.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description names a specific verb and resource ('Find all places that reference a symbol or file') and enumerates reference kinds ('imports, calls, renders, dispatches'). It distinguishes itself from sibling tools like Grep and get_call_graph without requiring schema inspection.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly says to use this tool instead of Grep for semantic symbol usages and directs users to get_call_graph for bidirectional call graphs. It also explains when to pass include_ambiguous_text_matched, leaving no ambiguity about tool selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_call_graphARead-onlyIdempotent
Build a bidirectional call graph centered on a symbol (who calls it + what it calls). Use to understand control flow through a function. For flat list of all references use find_usages instead. Read-only. Returns JSON: { root: { symbol_id, name, calls: [...], called_by: [...] } }.
| Name | Required | Description | Default |
|---|---|---|---|
| fqn | Yes | Fully qualified name to center the graph on | |
| depth | No | Traversal depth on each side (default 2) | |
| symbol_id | Yes | Symbol ID to center the graph on |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already cover read-only, idempotent, and non-destructive behavior, so the description's 'Read-only' is redundant but not harmful. The description adds genuine value by disclosing the bidirectional nature of the graph and the exact JSON return shape, which the annotations and schema do not convey. It does not go further to mention traversal cost or default depth behavior, but the schema already documents depth limits.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences with no fluff: the first states the core function, the second gives the use case and alternative tool, and the third confirms read-only status and return format. Every sentence carries useful information and the key distinction from find_usages is front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has moderate complexity (two required identifiers, one optional depth parameter, no output schema), and the description provides the missing return format while the schema documents depth. The only notable gap is not explaining why both symbol_id and fqn are required or how they interact, which could leave an agent uncertain about how to populate both parameters. Overall, enough is present for confident invocation, but this small ambiguity prevents a perfect score.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3. The description does not add parameter-specific meaning beyond what the schema already provides for symbol_id and fqn. It implies the result centers on a symbol, but the relationship between symbol_id and fqn (both required) is not clarified in either the description or the schema, so it neither improves nor worsens the baseline.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Build') and resource ('bidirectional call graph centered on a symbol'), and immediately clarifies semantics with the parenthetical 'who calls it + what it calls'. It also distinguishes itself from the sibling find_usages by describing the alternative as a flat list of all references, so an agent can tell them apart without opening schemas.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It states a clear purpose ('Use to understand control flow through a function') and gives an explicit when-not-to-use instruction with the named alternative ('For flat list of all references use find_usages instead'). This is direct routing guidance that leaves no ambiguity about tool selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_change_impactARead-onlyIdempotent
Full change impact report: risk score + mitigations, breaking change detection, enriched dependents (complexity, coverage, exports), module groups, affected tests, co-change hidden couplings. Supports diff-aware mode via symbol_ids to scope analysis to only changed symbols. Use before modifying code to understand blast radius. For quick risk assessment without full report, use assess_change_risk instead. Read-only. Returns JSON: { risk, dependents, affectedTests, breakingChanges, totalAffected }.
| Name | Required | Description | Default |
|---|---|---|---|
| fqn | No | Fully qualified name to analyze (alternative to symbol_id) | |
| depth | No | Max traversal depth (default 3) | |
| file_path | Yes | Relative file path to analyze | |
| symbol_id | Yes | Symbol ID to analyze | |
| symbol_ids | No | Diff-aware: only analyze impact of these specific symbols (e.g. from get_changed_symbols) | |
| max_dependents | No | Cap on returned dependents (default 200) | |
| decorator_filter | No | Filter dependents to only those with this decorator/annotation/attribute (e.g. "Route", "Transactional", "csrf_protect") |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already mark the tool as read-only, idempotent, and non-destructive, and the description reinforces this with 'Read-only.' It adds behavioral value by describing diff-aware mode via symbol_ids and the top-level JSON return shape, helping the agent anticipate output and scope.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact and front-loaded, opening with 'Full change impact report' and then listing concrete outputs. Every sentence carries distinct signal: purpose, mode, usage timing, alternative, safety, and return shape, with no filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a complex analysis tool, the description covers purpose, when to use, alternative, read-only behavior, diff-aware mode, and a summary of the JSON response. It doesn't document every returned field, but the listed keys plus full schema coverage give enough context for correct invocation and interpretation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Input schema coverage is 100%, so the schema already documents all 7 parameters. The description's mention of symbol_ids for diff-aware analysis adds slight context, but the schema already describes this behavior, so the description does not significantly elevate parameter understanding.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool produces a full change impact report, enumerating risk score, mitigations, breaking changes, enriched dependents, module groups, affected tests, and hidden couplings. It also explicitly distinguishes itself from assess_change_risk, making its purpose unmistakable even among sibling tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It gives an explicit usage directive: 'Use before modifying code to understand blast radius.' It also names a lighter alternative, assess_change_risk, for quick risk assessment, so an agent can decide when this heavier tool is warranted.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_context_bundleARead-onlyIdempotent
Get a symbol's source code + its import dependencies + optional callers, packed within a token budget. Supports batch queries with shared-import deduplication. Use instead of chaining get_symbol calls — deduplicates shared imports across symbols. For a single symbol without imports, get_symbol is lighter. Read-only. Returns JSON: { primary: [{ symbol_id, file, source }], imports: [{ file, source }], token_usage }.
| Name | Required | Description | Default |
|---|---|---|---|
| fqn | Yes | Alternative: look up by FQN | |
| symbol_id | Yes | Single symbol ID | |
| symbol_ids | No | Batch: multiple symbol IDs | |
| token_budget | No | Max tokens (default 8000) | |
| output_format | No | Output format (default json). | |
| include_callers | No | Include who calls these symbols (default false) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare read-only, idempotent, and non-destructive behavior; the description reinforces 'Read-only' and adds useful context about shared-import deduplication, token-budget packing, and the JSON shape. It does not explain truncation or error behavior when the token budget is exceeded, but this is a minor gap given the annotation coverage.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact, front-loaded with the core function, and every sentence earns its place—covering scope, batch behavior, sibling routing, safety, and return format without filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no output schema, the description provides a useful JSON skeleton and clear invocation guidance. It leaves some edge behavior implicit, such as how include_callers alters the response shape and what happens when the token budget is insufficient, but the schema and annotations cover most invocation details.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3. The description adds meaning beyond the schema by explaining why batch queries and token_budget matter: they enable shared-import deduplication within a packed token budget.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States a specific operation (get) and resource (a symbol's source code, imports, and optional callers packed within a token budget). It also clearly distinguishes itself from get_symbol, naming the sibling and the difference in scope.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly says to use this instead of chaining get_symbol calls and gives the lighter-alternative condition: for a single symbol without imports, get_symbol is better. This is concrete, actionable routing guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_coverage_reportARead-onlyIdempotent
Technology profile of the project: detected frameworks/ORMs/UI libs from manifests (package.json, composer.json, etc.), which are covered by trace-mcp plugins, and coverage gaps. Read-only. Returns JSON: { detected, covered, gaps }.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and non-destructive behavior; the description adds value by specifying the data source (manifests), the read-only nature, and the exact return shape { detected, covered, gaps }. This goes beyond the structured annotations without contradicting them.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact and front-loaded with the core purpose, followed by the read-only trait and return shape. Every sentence earns its place, with no redundant elaboration.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter, read-only report with no output schema, the description is complete: it explains what data is gathered, from where, and what the JSON response contains. An agent has enough information to invoke and interpret the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the baseline is 4. The description provides enough context about the returned fields to make the no-argument call understandable, and there is no parameter documentation gap.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the tool as producing a technology profile with detected frameworks/ORMs/UI libs and coverage gaps, which is specific and not a tautology. It distinguishes the report's focus on plugin coverage from siblings like get_optimization_report or get_usage_trends, though it does not explicitly name any sibling.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Usage context is implied rather than stated: an agent can infer this tool is for inspecting project technology coverage and gaps, but there is no explicit 'use when' guidance or mention of alternatives. No exclusion criteria are provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_feature_contextARead-onlyIdempotent
Search code by keyword/topic → returns ranked source snippets within a token budget. Use when you need to READ actual code for a concept or feature. For structured task context with tests and entry points use get_task_context instead; for symbol metadata without source use search. Read-only. Returns JSON (default) or Markdown: { items: [{ symbol_id, name, file, source, score }], token_usage } | { content: "...markdown..." }. Supports output_format: "toon". Capped by memory.recall.timeoutMs (default 5000ms); on timeout returns { items: [], token_usage, degraded: true }.
| Name | Required | Description | Default |
|---|---|---|---|
| description | Yes | Natural language description of the feature to find context for | |
| detail_level | No | Output verbosity. "minimal" returns ~40-60% fewer tokens (drops scores, fqn, signatures, summaries — keeps name/file/line). Use when you only need to pick a candidate before drilling in with get_symbol. Default: "default". | |
| token_budget | No | Max tokens for assembled context (default 4000) | |
| output_format | No | "json" (default, structured items), "markdown" (fenced code blocks, ~15-20% cheaper), or "toon" (lossless, 30-60% fewer tokens). |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Despite strong annotations (readOnly, idempotent, non-destructive), the description adds meaningful behavioral detail: token budget behavior, output format variants, timeout cap with default value, and a degraded response shape on timeout. It also confirms the read-only nature, aligning with annotations. No contradiction.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is dense and front-loaded, with the core purpose and usage guidance first. It packs output shapes, timeout behavior, and alternatives into a compact block. Minor redundancy exists ('Read-only' repeats the annotation) and the toon reference is slightly tacked on, but overall every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no output schema, the description properly explains return formats and the degraded timeout case. It covers tool selection, read-only semantics, token budget, and output options. Given the tool's moderate complexity and annotations already handling safety, nothing critical is missing for an agent to call it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% and the schema already documents all four parameters, including defaults, enums, and constraints. The description reinforces token budget and output format behavior but does not add substantive per-parameter meaning beyond the schema, so the baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific action ('Search code by keyword/topic'), a precise result ('ranked source snippets'), and an explicit constraint ('within a token budget'). It also distinguishes the tool from siblings by naming get_task_context and search as alternatives, so an agent can tell them apart immediately.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It gives an explicit when-to-use condition ('when you need to READ actual code for a concept or feature') and clear routing instructions: use get_task_context for structured task context with tests and entry points, and search for symbol metadata without source. This is exactly the kind of differentiation agents need.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_index_healthARead-onlyIdempotent
Get index status, statistics, health information, and pipeline progress (indexing, summarization, embedding). Read-only, no side effects. Use to verify the index is ready before running queries. Returns JSON: { totalFiles, totalSymbols, languages, frameworks, pipelineProgress }.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, and the description reinforces this with 'Read-only, no side effects.' It adds valuable context beyond annotations by describing the return format explicitly and mentioning pipeline progress (indexing, summarization, embedding). No contradictions with annotations exist.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact (four sentences) and front-loads the core purpose. Every sentence adds useful information: purpose, safety, usage context, and return format. There is no fluff or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a parameterless, read-only health-check tool, the description is fully complete. It states what the tool does, when to use it, that it is safe, and exactly what JSON it returns. An agent has everything needed to decide whether to call it and interpret the result.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the schema is empty. Per calibration, a baseline of 4 applies when there are no parameters, as there is nothing to document. The description does not need to add parameter detail.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('Get'), a clear resource ('index status, statistics, health information, and pipeline progress'), and explicitly mentions the readiness check ('verify the index is ready before running queries'). This clearly distinguishes it from sibling tools like get_project_map or get_context_bundle, which serve different purposes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear usage context: 'Use to verify the index is ready before running queries.' This tells the agent when to invoke it. However, it does not explicitly mention alternatives or when not to use it, though the purpose is narrow enough that this is not a major gap.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_optimization_reportARead-onlyIdempotent
Detect token waste patterns in AI agent sessions: repeated file reads, Bash grep instead of search, large file reads, unused trace-mcp tools. Provides savings estimates. Read-only. For usage/cost overview use get_session_analytics; for A/B savings comparison use get_real_savings. Returns JSON: { patterns: [{ type, description, savings_estimate }], total_waste }.
| Name | Required | Description | Default |
|---|---|---|---|
| period | No | Time period (default: week) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and idempotentHint=true, so the safety type is covered. The description adds value beyond annotations by describing the JSON return format ({ patterns: [{ type, description, savings_estimate }], total_waste }) and stating it 'Provides savings estimates.' No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences, each earning its place: the first names specific waste patterns, the second covers read-only safety and savings estimates, the third gives the return shape and sibling routing. No filler or repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple one-optional-parameter tool with no output schema, the description provides the return JSON structure, the tool's scope, and explicit sibling alternatives. Nothing needed to invoke it correctly is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema covers 100% of the single parameter, including enum values and default. The description does not add any parameter-level detail, so the schema carries the full burden. Baseline 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb and resource: 'Detect token waste patterns in AI agent sessions,' then lists concrete pattern types (repeated file reads, Bash grep instead of search, large file reads, unused trace-mcp tools). It also provides the return shape and distinguishes itself from siblings by naming their use cases.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly routes to alternatives with conditions: 'For usage/cost overview use get_session_analytics; for A/B savings comparison use get_real_savings.' This tells the agent when not to use this tool and which sibling to pick instead.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_outlineARead-onlyIdempotent
Get all symbols for a file (signatures only, no bodies) — cheaper than Read for understanding a file before editing. Follow up with get_symbol to read one symbol's source. nested: true expands large top-level symbols (default ≥100 LOC) into inner declarations, each carrying parentId + depth (max 3). Read-only. Returns JSON: { path, language, symbols: [{ symbolId, name, kind, signature, lineStart, lineEnd, parentId?, depth? }] }. Supports output_format: "toon".
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Relative file path | |
| nested | No | Walk the body of each top-level symbol past min_loc_for_nesting and emit inner declarations as extra rows carrying `parentId` + `depth`. Default false. | |
| detail_level | No | Output verbosity. "minimal" returns ~40-60% fewer tokens (drops scores, fqn, signatures, summaries — keeps name/file/line). Use when you only need to pick a candidate before drilling in with get_symbol. Default: "default". | |
| output_format | No | "json" (default) or "toon" (lossless, 30-60% fewer tokens). "markdown" is unsupported here and behaves as json. | |
| min_loc_for_nesting | No | Minimum (line_end - line_start) for a top-level symbol to be expanded when nested=true. Default 100. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the readOnlyHint and idempotentHint annotations, the description adds meaningful behavioral detail: it is signatures-only, cheaper than Read, expands nested declarations with parentId+depth up to max 3, and specifies the exact JSON return shape. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact and front-loaded: purpose, use case, follow-up, nested behavior, read-only flag, return shape, and format note appear in a logical order. Every sentence earns its place; there is no filler or repetition of schema details.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite having no output schema, the description provides the full JSON return shape and all key behavioral constraints. Parameter semantics are covered by high schema coverage, and usage vs. alternatives is explicit. For a read-only listing tool this is complete enough to invoke correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3. The description adds value by explaining the nested=true effect (expands large top-level symbols, default ≥100 LOC, max depth 3) and noting output_format 'toon' support, which goes slightly beyond the schema's per-parameter text.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb+resource ('Get all symbols for a file') and immediately clarifies scope ('signatures only, no bodies'). It also distinguishes itself from the sibling get_symbol and from Read by noting it is cheaper for understanding a file before editing, which is strong differentiation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly says when to use this tool ('before editing' to understand a file, 'cheaper than Read') and names the follow-up alternative ('get_symbol') for reading a symbol's source. It also explains when nested expansion applies, giving clear practical usage direction.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_preset_infoARead-onlyIdempotent
Show active tool preset, available presets, which tools are registered in this session, and which are deferred (loadable via load_tools). Read-only. Returns JSON: { active_preset, registered_tools, tool_names, available_presets, deferred_tools }.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare read-only, idempotent, and non-destructive behavior. The description reinforces this with 'Read-only' and adds the return JSON shape (active_preset, registered_tools, etc.), disclosing what the agent will receive. This extra context goes beyond the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences, front-loaded with the core purpose and followed by a compact JSON key listing. Every sentence adds value; no filler or repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter read-only introspection tool, the description is complete: it states what the tool reports, the read-only nature, and the exact response fields. There is no output schema, so the description carries the burden of return-value disclosure and does so adequately.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so schema coverage is trivially 100%. Baseline for zero-parameter tools is 4; the description need not document parameter semantics because there are none.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb ('Show') and enumerates the exact resources: active tool preset, available presets, registered tools, and deferred tools. It clearly differentiates this introspection tool from the many sibling get_* tools and explicitly connects deferred tools to load_tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description makes the tool's context clear: use it to inspect tool registration and preset state. It mentions that deferred tools are loadable via load_tools, providing adjacent guidance, though it does not explicitly state when not to use it or name a directly competing alternative.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_project_mapARead-onlyIdempotent
Get project overview: detected frameworks, languages, file counts, structure. Read-only, no side effects. Call with summary_only=true at session start to orient yourself before diving into code. Use instead of manual ls/find. Returns JSON: { frameworks, languages, fileCount, symbolCount, structure }.
| Name | Required | Description | Default |
|---|---|---|---|
| summary_only | No | Return only framework list + counts (default false) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the safety profile is covered. The description adds useful behavioral context beyond that: it confirms 'no side effects', suggests a cheap orientation call pattern, and specifies the return shape. This exceeds the annotation baseline without contradicting it.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Four concise sentences front-load the core behavior and return shape. The 'Read-only, no side effects' clause is slightly redundant with annotations, but the rest earns its place by adding usage guidance and output fields.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is complete for a simple, optional-parameter read-only tool. It names the return JSON fields, gives a recommended invocation, and explains the tool's role. It could mention symbolCount semantics or potential costs, but nothing an agent needs to call it correctly is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents the only parameter. The description adds the session-start use case for summary_only=true, which is helpful, but it does not add meaning beyond what the parameter description already conveys.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States a specific verb ('Get') and resource ('project map') and enumerates contents (frameworks, languages, file counts, structure). It does not explicitly distinguish itself from sibling tools like get_outline or get_context_bundle, but the term 'project map' combined with the described fields is clear enough for an agent to understand what it returns.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides clear usage context: call at session start with summary_only=true to orient before diving into code, and use instead of manual ls/find. It does not discuss when not to use it or name alternative tools, but the intended scenario is explicit and actionable.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_real_savingsARead-onlyIdempotent
A/B comparison: how many tokens could be saved by using trace-mcp instead of raw Read/Bash file reads. Per-file breakdown. Read-only. For pattern-based waste detection use get_optimization_report instead. Returns JSON: { files: [{ file, raw_tokens, compact_tokens, savings }], total_savings }.
| Name | Required | Description | Default |
|---|---|---|---|
| period | No | Time period (default: week) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnly, idempotent, and non-destructive hints, so the description does not need to repeat safety traits. It adds useful behavioral context by describing the exact return shape: files with raw_tokens, compact_tokens, savings, and total_savings. This is valuable because there is no output schema.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact and front-loaded with the core purpose, then clearly differentiates the tool from a sibling, and finishes with the return JSON shape. Every sentence earns its place with no filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple read-only tool with one optional parameter, the description is complete: it explains what the tool does, when to use it, what it returns, and how it differs from the closest sibling. No important context is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, and the only parameter, period, is fully documented in the schema with an enum and default of 'week'. The description does not add parameter-level meaning beyond the schema, which is expected given high coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with a specific verb and resource: 'A/B comparison: how many tokens could be saved by using trace-mcp instead of raw Read/Bash file reads.' It also specifies the per-file breakdown, making it easy to distinguish from other reporting tools like get_optimization_report.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly directs when to use this tool versus an alternative: 'For pattern-based waste detection use get_optimization_report instead.' This provides a clear exclusion and alternative, so an agent can route correctly without opening the schema.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_session_analyticsARead-onlyIdempotent
Analyze AI agent session logs: token usage, cost breakdown by tool/server, top files, models used. Parses Claude Code JSONL logs automatically. Read-only. For waste detection use get_optimization_report; for cost trends use get_usage_trends. Returns JSON: { sessions, tokens, cost_usd, tools, models, topFiles }.
| Name | Required | Description | Default |
|---|---|---|---|
| period | No | Time period (default: week) | |
| session_id | Yes | Specific session ID to analyze |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already cover read-only and idempotent behavior, and the description reinforces that with 'Read-only.' It adds context beyond the annotations by disclosing that it parses Claude Code JSONL logs automatically and by specifying the exact returned JSON keys, which is useful since there is no output schema.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact and well-organized: purpose, input-format behavior, safety clarification, routing to siblings, and return shape. Each sentence earns its place, and the most important scope is front-loaded before the routing and return details.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a read-only, two-parameter tool with a fully documented schema and helpful annotations, the description supplies all remaining contextual essentials: JSON output shape, automatic log parsing, and sibling routing. Nothing needed for correct invocation is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the parameter meaning is fully documented in the input schema for both session_id and period. The description mentions analysis dimensions and output fields but does not add parameter-specific semantics beyond what the schema already provides, so the baseline of 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb and resource: 'Analyze AI agent session logs' and then lists concrete outputs (token usage, cost breakdown by tool/server, top files, models). It also distinguishes itself from sibling tools by directing waste detection to get_optimization_report and cost trends to get_usage_trends.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly names alternatives and when they should be preferred over this tool: 'For waste detection use get_optimization_report; for cost trends use get_usage_trends.' This gives an agent routing guidance rather than leaving the choice to inference.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_session_statsARead-onlyIdempotent
Token savings stats for this session: per-tool call counts, estimated token savings, reduction percentage, dedup savings, and per-tool latency (p50/p95/max/error_rate). Read-only. Returns JSON: { session: { ..., latency_per_tool }, cumulative, dedup_saved_tokens }.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the description only needs to add non-safety behavior. It adds the return shape and key metrics (latency percentiles, cumulative, dedup_saved_tokens), which is meaningful since no output schema is present. No contradiction exists.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact and front-loads the core purpose. The metric list is dense but informative, and the return shape is summarized efficiently. The 'Read-only' phrase is redundant with annotations but does not meaningfully hurt conciseness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a parameterless read-only stats tool, the description covers scope, metric contents, and return structure. The '...' inside the session object leaves some schema detail unspecified, but the description is still sufficient for an agent to call it correctly and understand what it returns.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
This tool takes zero parameters, so the description cannot add parameter-level meaning beyond the schema. The baseline of 4 applies because there are no parameters to document and no ambiguity for an agent.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool provides token savings stats for the current session, including per-tool call counts, savings, reduction percentage, dedup savings, and latency metrics. This is specific and not a tautology, though it does not explicitly distinguish itself from sibling tools like get_session_analytics or get_usage_trends.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase 'for this session' provides useful context, implying use when current-session token savings statistics are needed. However, there is no explicit guidance about when not to use this tool or which sibling alternative to choose, especially given overlapping siblings like get_real_savings and get_session_analytics.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_symbolARead-onlyIdempotent
Look up a symbol by symbol_id or FQN and return its source code. Use instead of Read when you need one specific function/class/method — returns only the symbol, not the whole file. For multiple symbols at once, prefer get_context_bundle. Read-only. Returns JSON: { symbol_id, name, kind, fqn, signature, file, line_start, line_end, source }.
| Name | Required | Description | Default |
|---|---|---|---|
| fqn | Yes | The fully qualified name to look up | |
| max_lines | No | Truncate source to this many lines (omit for full source) | |
| symbol_id | Yes | The symbol_id to look up | |
| verify_against_git | No | Compare the indexed source against the current git HEAD slice; mismatches set `git_mismatch: true` in the response (index may be stale). Read-only. Silently skipped when git is unavailable or the file is untracked. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already establish read-only/idempotent/non-destructive behavior. The description adds useful context by specifying that only the symbol is returned (not the whole file) and by enumerating the JSON response fields. It does not detail the git verification behavior, but that is disclosed in the schema.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences carry the core purpose, usage routing, safety hint, and return shape with no filler. Key information is front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a read-only 4-parameter tool without an output schema, the description gives a good overall contract: what is returned, which sibling to use, and that it is read-only. The only meaningful omission is resolving the symbol_id/FQN requirement conflict and noting the optional git mismatch behavior, though the latter is present in the input schema.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema covers 100% of parameters, so the baseline is 3; however, the description's 'by symbol_id or FQN' conflicts with the schema's required array listing both symbol_id and fqn. This can mislead an agent into supplying only one of them. The optional max_lines and verify_against_git behaviors are left entirely to the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description names a specific verb and resource ('look up a symbol ... return its source code') and immediately distinguishes itself from Read and get_context_bundle. An agent can infer exactly which operation this tool performs.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly says when to prefer this over Read (one specific function/class/method) and when to prefer get_context_bundle instead (multiple symbols). No ambiguity remains about selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_task_contextARead-onlyIdempotent
All-in-one context for starting a dev task: execution paths, tests, entry points, adapted by task type. Use as your FIRST call when beginning any new task — replaces manual chaining of search → get_symbol → Read. For narrower feature-code lookup use get_feature_context instead. Read-only. Returns JSON (default) or Markdown.
| Name | Required | Description | Default |
|---|---|---|---|
| task | Yes | Natural language description of the task | |
| focus | No | Context strategy: minimal (fast, essential only), broad (default, wide net), deep (follow full execution chains) | |
| detail_level | No | Output verbosity. "minimal" returns ~40-60% fewer tokens (drops scores, fqn, signatures, summaries — keeps name/file/line). Use when you only need to pick a candidate before drilling in with get_symbol. Default: "default". | |
| token_budget | No | Max tokens (default 8000) | |
| include_tests | No | Include relevant test files (default true) | |
| output_format | No | "json" (default, structured fields) or "markdown" (single LLM-optimized document with code fences, ~15-20% cheaper). |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, and the description reinforces these with 'Read-only.' It adds value by disclosing the output formats (JSON default or Markdown) and the adaptive-by-task-type behavior. No contradiction with annotations is present, and the extra output-format detail goes beyond what annotations provide.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact and front-loaded: the first sentence states the core purpose, the second gives direct usage guidance, and the third handles sibling differentiation. Every sentence earns its place with no redundant filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given six parameters, a rich schema, and no output schema, the description covers the essential call-or-not decision and high-level output shape. It names the context contents (execution paths, tests, entry points) and output formats, though it does not enumerate the exact JSON fields returned; this is a minor gap for an all-in-one context tool but not blocking.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already explains all six parameters, including task, focus, detail_level, token_budget, include_tests, and output_format. The description does not need to compensate for parameter gaps and adds only general context about output format, which is already reflected in the schema. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the tool as the all-in-one context for starting a dev task, listing concrete contents (execution paths, tests, entry points) and how it adapts by task type. It also explicitly distinguishes itself from the sibling get_feature_context, so an agent can tell them apart without inspecting schemas.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives explicit when-to-use guidance: 'Use as your FIRST call when beginning any new task' and frames it as a replacement for manually chaining search → get_symbol → Read. It also directs narrower feature-code lookups to get_feature_context, providing a clear alternative and exclusion condition.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_usage_trendsARead-onlyIdempotent
Daily token usage time-series: sessions, tokens, estimated cost, tool calls per day. For spotting cost spikes. Read-only. For detailed session breakdown use get_session_analytics instead. Returns JSON: { days, daily: [{ date, sessions, tokens, cost_usd, tool_calls }], totals }.
| Name | Required | Description | Default |
|---|---|---|---|
| days | No | Number of days to show (default: 30) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint=false, so the read-only nature disclosed in the description is consistent but not new. The description adds value by revealing the exact return shape (JSON with days, daily array, totals) and the daily time-series granularity, which the annotations do not convey.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three dense sentences with no fluff. The main purpose is front-loaded, the use case and alternative follow immediately, and the return format is compactly summarized. Every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has only one optional parameter, no output schema, and low complexity. The description covers the purpose, the use case, the alternative tool, the safety profile is in annotations, and the return JSON shape is fully specified. There is nothing an agent needs to call this correctly that is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with the parameter description already stating it is the number of days and the default of 30. The tool description adds no additional semantics for the 'days' parameter, but it does corroborate that the output contains a 'days' field, which is minimal extra context. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States a specific verb and resource: produces a daily token usage time-series with sessions, tokens, estimated cost, and tool calls. The phrase 'For spotting cost spikes' clarifies the intended use, and it explicitly differentiates itself from get_session_analytics, so an agent can distinguish it from siblings without opening schemas.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Gives an explicit use case ('For spotting cost spikes') and names the alternative when a different need exists ('For detailed session breakdown use get_session_analytics instead'). This gives clear selection criteria with no inference required.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
invalidate_decisionAIdempotent
Mark a decision as no longer valid. The decision remains in the knowledge graph for historical queries but is excluded from active queries. Use when a decision is superseded or reversed. Mutates the decision store; idempotent. Returns JSON: { invalidated: { id, title, valid_until } }.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Decision ID to invalidate | |
| valid_until | No | ISO timestamp when decision became invalid (default: now) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses key behavioral traits beyond annotations: the decision remains for historical queries, is excluded from active queries, mutates the decision store, and is idempotent. It also specifies the return shape. This adds meaningful context beyond the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Four short sentences, each carrying useful information: the action, the historical/active distinction, the usage condition, and the return format. No filler or redundancy; the most important purpose is front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the absence of an output schema, the returned JSON is explicitly stated. The mutation, idempotency, and retention behavior are all covered. The tool's effect on the knowledge graph and query behavior is clear, making it complete for the agent to invoke correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so both id and valid_until are documented there. The description itself does not add much parameter-level meaning beyond the schema, but it correctly implies valid_until is part of the return object. Baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Mark as no longer valid'), names the resource ('decision'), and clearly defines the outcome: the decision stays in the knowledge graph for historical queries but is excluded from active queries. This differentiates it from siblings like remember_decision and query_decisions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states when to use the tool: 'Use when a decision is superseded or reversed.' It does not name alternative tools or give when-not-to-use guidance, but the usage context is clear enough for an agent to select it correctly.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
load_toolsARead-onlyIdempotent
Load tools this session's preset deferred, by preset name and/or explicit tool names. Call with no arguments to list what is deferred. Emits notifications/tools/list_changed and returns the loaded tools' schemas, so they are usable even if your client ignores that notification (call them through batch). Returns JSON: { loaded, already_loaded, unknown, blocked, tools, hint }.
| Name | Required | Description | Default |
|---|---|---|---|
| tools | No | Explicit tool names to load. Unions with `preset` when both are given. | |
| preset | Yes | Preset whose members to load (minimal, standard, review, architecture, full). "full" loads everything deferred. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds valuable behavioral context beyond annotations: it emits notifications/tools/list_changed, returns the loaded tools' schemas, and explains that the tools are usable even if the client ignores the notification (via batch). It also discloses the response JSON shape (loaded, already_loaded, unknown, blocked, tools, hint), which is not otherwise specified.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, tightly packed with essential information, and the core action is front-loaded. Every clause adds value: the loading modes, the no-args list behavior, the notification side-effect, the batch fallback, and the return format. No redundancy or fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given a simple 2-parameter schema with no output schema, the description is remarkably complete. It explains the exact behavior, the notification, the return shape (including fields like 'unknown' and 'blocked'), and how to use the returned tools through batch. There is no missing information an agent would need to invoke this tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% for both parameters (preset and tools), so the schema already describes each parameter adequately. The description adds minimal parameter-specific meaning beyond the schema—only the hint to call with no arguments to list deferred tools, which is more usage guidance than parameter semantics. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('Load') and resource ('this session's preset deferred'), and clarifies the two modes (preset and/or explicit tool names, or no args to list). It is clearly distinct from sibling tools like get_preset_info and batch, so an agent can immediately tell which tool to invoke.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit usage context: call with no arguments to list deferred tools, and use the `batch` tool to call the loaded tools (since schemas are returned). It does not explicitly list when not to use this tool or name alternatives, but the batch reference and the 'list' mode give sufficient guidance for typical use cases.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
mine_sessionsAIdempotent
Mine Claude Code / Claw Code session logs for architectural decisions, tech choices, bug root causes, and preferences. Strategies: "regex" (default, free, ~20-40% recall), "llm" (higher recall, costs tokens), "hybrid" (regex + LLM safety net). Skips already-mined sessions unless force=true. Mutates the decision store; idempotent. Returns JSON: { mined, decisions_extracted, sessions_processed, strategy?, llm_sessions?, llm_decisions_extracted? }.
| Name | Required | Description | Default |
|---|---|---|---|
| force | No | Re-mine already processed sessions (default: false) | |
| strategy | No | Extraction strategy: regex (default, free/fast/low recall), llm (AI provider, costs tokens, higher recall), hybrid (regex + LLM safety net). Falls back to regex with a warning if no AI provider is configured. | |
| project_root | No | Only mine sessions for this project path (default: all projects) | |
| min_confidence | No | Legacy reject floor — drops decisions below this. Superseded by reject_threshold; kept for back-compat. | |
| reject_threshold | No | Reject floor (default: config decisions.reject_threshold, fallback 0.45). Decisions in [reject_threshold, review_threshold) queue for review; below it, dropped. | |
| review_threshold | No | Auto-approve cutoff (default: config decisions.review_threshold, fallback 0.75). Decisions ≥ this enter the active graph immediately. | |
| incremental_cursor | No | Per-call override for `memory.mining.incrementalCursor`. true (default) reuses byte-offset cursors for appended turns; false falls back to legacy mined/unmined semantics. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description explicitly states "Mutates the decision store; idempotent," and "Skips already-mined sessions unless force=true." This adds meaningful behavioral context beyond the annotations, specifying exactly what side effect occurs, the idempotency guarantee, and the skip behavior. It aligns with idempotentHint=true and readOnlyHint=false, with no contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact and dense: two sentences carrying purpose, strategy tradeoffs, behavioral notes, and return shape. It front-loads the core purpose, uses structured lists for strategies, and contains no filler. Every clause earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with 7 optional parameters, no output schema, and moderate complexity, the description supplies the return JSON structure, strategy cost/recall tradeoffs, mutation behavior, and skip logic. Combined with 100% schema coverage, an agent has everything needed to select and invoke the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, and the schema already documents all 7 parameters with detailed descriptions, including enum choices, thresholds, and the incremental_cursor override. The description merely summarizes strategy and force, adding no new semantic information beyond what the schema already provides. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb and resource: "Mine Claude Code / Claw Code session logs for architectural decisions, tech choices, bug root causes, and preferences." This clearly distinguishes it from sibling read/query tools like search and query_decisions by stating it processes session logs and mutates the decision store. The purpose is unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives concrete guidance on strategy selection (regex vs llm vs hybrid) and explains the skip-already-mined behavior with force=true. However, it never explicitly names alternatives or states when NOT to use this tool (e.g., "use query_decisions instead to read stored decisions"). Context is clear but exclusions are absent.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
plan_turnARead-onlyIdempotent
Opening-move router for new tasks. Combines BM25/PageRank search + session journal (negative evidence + focus signals) + framework-aware insertion-point suggestions + change-risk + turn-budget advisor into ONE call. Returns verdict (exists/partial/missing/ambiguous), confidence, ranked targets with provenance, scaffold hints when missing, and recommended next tool calls. Call this FIRST on a new task to break the empty-result hallucination chain. Read-only. For broader task context with source code use get_task_context instead. Returns JSON: { verdict, confidence, targets, scaffoldHints, nextSteps }.
| Name | Required | Description | Default |
|---|---|---|---|
| task | Yes | Natural-language task description (e.g. "add a webhook endpoint for stripe payments") | |
| intent | No | Optional intent hint; auto-classified from task if omitted | |
| skip_risk | No | Skip change-risk assessment for the top target (default false) | |
| max_targets | No | Cap on returned targets (default 5) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already mark this read-only, idempotent, and non-destructive, and the description reinforces this with 'Read-only.' It adds behavioral context by explaining the tool's combined search/journal/risk mechanism and its role in preventing empty-result hallucinations, going beyond what annotations alone convey.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is information-dense and mostly front-loaded, starting with the primary purpose and usage call-to-action. The long enumeration of combined capabilities and the slight redundancy between 'Returns...' and 'Returns JSON: {...}' keep it from being perfectly concise, but every sentence contributes needed context.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite the absence of an output schema, the description states the JSON shape, the verdict values, the provenance of ranked targets, scaffold hints, and recommended next steps. Combined with the explicit usage instruction and alternative tool pointer, an agent has what it needs to invoke the tool correctly on a new task.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, and each parameter already has a clear description with defaults and constraints. The tool description does not meaningfully add parameter-level guidance, so it meets the baseline but does not exceed it.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with 'Opening-move router for new tasks' and lists a concrete deliverable set: verdict, confidence, ranked targets with provenance, scaffold hints, and recommended next tool calls. It also explicitly distinguishes itself from get_task_context, so an agent can select it correctly among siblings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description states exactly when to use it: 'Call this FIRST on a new task to break the empty-result hallucination chain.' It also names the alternative, get_task_context, and the condition for preferring that instead ('broader task context with source code'), giving clear, actionable routing guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
query_decisionsARead-onlyIdempotent
Query the decision knowledge graph. Filter by type, subproject, code symbol, file path, tag, or time — answers "why was this architecture chosen?" with the actual decision record. Use service_name to scope to a subproject. Defaults to auto+human-approved decisions; use include_pending or review_status for other tiers. Rows carry cluster_ids when part of a topical cluster (see clusters_summary). Read-only. Returns JSON: { decisions: [{ id, title, type, content, tags, review_status, cluster_ids? }], clusters_summary?, total_results }. Supports output_format: "toon". Capped by memory.recall.timeoutMs (default 5000ms); on timeout returns { decisions: [], total_results: 0, degraded: true }.
| Name | Required | Description | Default |
|---|---|---|---|
| tag | Yes | Filter by tag | |
| type | No | Filter by decision type | |
| as_of | Yes | Only decisions active at this ISO timestamp | |
| limit | No | Max results (default: 50) | |
| search | No | Full-text search query (FTS5 with porter stemming) | |
| verify | No | Staleness verification (default true). Checks each `symbol_id`-linked decision against the live index + git history; deleted/renamed/materially-changed code is flagged `verification` + `stale: true`. false skips the check. | |
| order_by | No | Result ordering: "recency" (default, valid_from DESC), "created_at" DESC, or "heat" (time-decay favoring frequently-recalled + fresh; degrades to recency if disabled in config). | |
| file_path | Yes | Filter by linked file path | |
| symbol_id | Yes | Filter by linked symbol FQN | |
| git_branch | No | Branch filter: "current" (default) = current branch + branch-agnostic; "all" = every branch; any other value = that branch + branch-agnostic. | |
| index_only | No | Progressive disclosure (default false). true omits full `content` — just id, title, type, anchors, tags, ~1-line `summary`. Pick ids cheaply, then pull full content with `get_decision`. | |
| service_name | No | Filter by subproject name (e.g., "auth-api") | |
| verification | No | Filter by verification verdict (implies verify=true). "stale" = any flagged row; "ok" = verified-fresh only. Omit to return all rows annotated in place. | |
| output_format | No | Output format. "json" (default) returns JSON, "markdown" returns LLM-friendly fenced markdown (tool-specific), "toon" returns Token-Oriented Object Notation — 30-60% fewer tokens on tabular data, fully lossless. | |
| review_status | No | Restrict to a single review tier (overrides default + include_pending). Use "pending" to fetch the review queue. | |
| include_pending | No | Also return decisions in the review queue (review_status="pending"). Default: false — only auto-approved and approved rows are returned. | |
| include_invalidated | No | Include invalidated decisions (default: false) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Goes far beyond the readOnly/idempotent annotations by disclosing the default approval tier, conditional cluster_ids, exact JSON return shape, support for the 'toon' output format, and the timeout/degraded response behavior. There is no conflict with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is dense and front-loaded: purpose and filters come first, followed by return format and edge behavior. Minor redundancy such as 'Read-only' (already in annotations) prevents a perfect score.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 17 parameters, no output schema, and no external return documentation, the description is unusually complete: it specifies the response object, optional clusters_summary, total_results, default tier behavior, and degraded timeout behavior. An agent has enough information to invoke and interpret the result correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
All 17 parameters already have schema descriptions, so the baseline is 3; the description mostly restates what those descriptions say (service_name scoping, review tiers, output format). It also leaves a mismatch: the input schema marks symbol_id, file_path, tag, and as_of as required while the description presents them as optional filters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Opens with a specific verb and resource: 'Query the decision knowledge graph.' It then lists the filter dimensions and ties the tool to the concrete question 'why was this architecture chosen?', which clearly distinguishes it from generic siblings like search_text or search.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides clear operational guidance: use service_name to scope to a subproject, and use include_pending or review_status to select decision tiers beyond the default. It does not explicitly name alternative tools or state when not to use this tool, so it stops short of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
register_editAIdempotent
Notify trace-mcp that a file was edited. Reindexes the single file and invalidates search caches. Call after Edit/Write to keep index fresh — much lighter than full reindex. Also checks for duplicate symbols — if _duplication_warnings appears in the response, you may be recreating existing logic; review the referenced symbols before continuing. Mutates the index; idempotent. Returns JSON: { status, file, totalFiles, indexed, _duplication_warnings? }.
| Name | Required | Description | Default |
|---|---|---|---|
| file_path | Yes | Relative path to the edited file |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description goes beyond annotations by disclosing that it mutates the index, is idempotent, invalidates search caches, checks for duplicate symbols, and returns a specific JSON shape. This aligns with annotations (idempotentHint=true, readOnlyHint=false) and adds valuable behavioral context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Four tightly packed sentences: purpose, effect, usage timing, warning behavior, idempotence, and response format. Every sentence earns its place and the most important information is front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-parameter mutation tool with no output schema, the description is complete: it covers when to call, side effects, idempotency, response format, and how to interpret the duplication warning. An agent has everything needed to invoke it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already defines file_path as 'Relative path to the edited file'. The description reinforces this by referencing 'the single file', but it adds no new parameter-level detail beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb and resource: 'Notify trace-mcp that a file was edited' and explains the concrete effect ('Reindexes the single file and invalidates search caches'). This clearly separates register_edit from the many read-oriented sibling tools like get_index_health and search.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly says 'Call after Edit/Write to keep index fresh' and contrasts itself with 'much lighter than full reindex', giving clear timing and relative cost guidance. It does not name an exact sibling alternative, but the usage context is unambiguous.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
remember_decisionARead-onlyIdempotent
Live agent write into the decision knowledge graph. Confidence-scores the input and routes it through the memoir review queue: high-confidence rows enter the active graph immediately, mid-confidence rows queue for human approval, low-confidence rows are dropped without persistence. Per-session dedup + rate-limit. Use during a session to capture decisions in real time. For manual high-confidence writes use add_decision; for post-hoc extraction from session logs use mine_sessions. Returns JSON: { id, review_status, confidence, deduplicated? }.
| Name | Required | Description | Default |
|---|---|---|---|
| tags | No | Tags for categorization (e.g., ["auth", "security"]) | |
| type | Yes | Decision type | |
| title | Yes | Short summary of the decision | |
| content | Yes | Full decision text — reasoning, context, tradeoffs | |
| file_path | Yes | File path this decision is about | |
| symbol_id | No | Symbol FQN this decision is about (e.g., "src/auth/provider.ts::AuthProvider#class") | |
| git_branch | No | Git branch this decision belongs to. Omit to auto-detect, or pass null to make it branch-agnostic. | |
| session_id | No | Session identifier for dedup/rate-limit (default: "_default") | |
| service_name | No | Subproject name this decision is about (e.g., "auth-api", "user-service") |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotation Contradiction: annotations declare readOnlyHint=true, while the description explicitly says 'Live agent write', routes rows through a review queue, drops low-confidence rows, and persists data. This is a direct contradiction that makes the tool's behavioral contract untrustworthy.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is dense but every clause earns its place: core behavior, routing rules, dedup/rate-limit, usage timing, sibling alternatives, and return shape. It is front-loaded and avoids filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite the annotation contradiction, the description itself provides the routing behavior, persistence semantics, return JSON shape, and usage context, while the schema covers all parameters. With no output schema, the explicit return shape is a strong addition. The conflicting readOnly annotation prevents a perfect score.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema fully documents all 9 parameters. The description adds little parameter-level meaning beyond confirming session-based dedup and rate-limit behavior, which the schema already mentions for session_id. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description identifies a specific action ('write into the decision knowledge graph'), the confidence-routing behavior, and explicitly contrasts itself with add_decision and mine_sessions. An agent can distinguish this tool from its siblings without inspecting schemas.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
States exactly when to use it ('capture decisions in real time') and names the alternatives for other scenarios: add_decision for manual high-confidence writes and mine_sessions for post-hoc extraction from session logs.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
searchARead-onlyIdempotent
Search symbols by name, kind, or text. Use instead of Grep for functions, classes, methods, variables. For raw text/comment search use search_text; for references to a known symbol use find_usages. Read-only. Returns JSON: { items: [{ symbol_id, name, kind, fqn, signature, file, line, score }], total, search_mode } — mode-specific shape when mode!=single. Supports output_format: "toon".
| Name | Required | Description | Default |
|---|---|---|---|
| kind | No | Filter by symbol kind (class, method, function, etc.) | |
| mode | No | single (default): top-K. tiered: high/medium/low buckets. drill: scoped to drill_from. flat: raw FTS, no PageRank. get: exact lookup. Omit to auto-pick. | |
| fuzzy | No | Typo-tolerant search. Auto-enabled when exact search returns 0 results. | |
| limit | No | Max results (default 20) | |
| query | Yes | Search query | |
| fusion | No | Enable Signal Fusion — multi-channel WRR ranking across lexical (BM25), structural (PageRank), similarity (embeddings), and identity match. Weights come from `tune_weights`. | |
| offset | No | Offset for pagination | |
| extends | No | Filter to classes/interfaces extending this name | |
| language | Yes | Filter by language | |
| semantic | No | auto (default): hybrid if AI available. on: force hybrid. off: lexical-only. only: pure vector. Non-"off" needs an AI provider + one embed_repo run. | |
| decorator | No | Filter to symbols carrying this decorator/annotation/attribute | |
| retriever | No | Run one named retrieval algorithm instead of the mode dispatcher. Ignores mode/filters/fuzzy/fusion; returns { retriever, items, total }. | |
| drill_from | No | [mode="drill"] File path or symbol_id to restrict results to. | |
| implements | No | Filter to classes implementing this interface | |
| detail_level | No | Output verbosity. "minimal" returns ~40-60% fewer tokens (drops scores, fqn, signatures, summaries — keeps name/file/line). Use when you only need to pick a candidate before drilling in with get_symbol. Default: "default". | |
| file_pattern | Yes | Filter by file path pattern | |
| output_format | No | "json" (default) or "toon" (lossless, 30-60% fewer tokens). "markdown" behaves as json here. | |
| fuzzy_threshold | No | [fuzzy] Min trigram similarity (default 0.3) | |
| semantic_weight | No | [semantic] 0 = lexical only, 0.5 = balanced (default), 1 = vector only. | |
| max_edit_distance | No | [fuzzy] Max edit distance (default 3) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint, idempotentHint, and destructiveHint, so the baseline burden is lower. The description adds value by disclosing the return JSON shape, mode-specific output variations, and support for output_format 'toon'. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences cover purpose, alternatives, return format, and output options with zero wasted words. Key differentiators are front-loaded, making it quick for an agent to read and act on.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a complex 20-parameter tool with no output schema, the description provides a useful return shape and notes mode-specific behavior. It does not enumerate every mode or retriever, but the schema covers those details completely, so the description is sufficiently complete for correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema fully documents all 20 parameters and their meanings. The description adds minimal parameter-specific insight beyond referring to symbol kinds and output_format, which is acceptable given the schema's completeness.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the operation — searching symbols by name, kind, or text — and explicitly contrasts with grep, search_text, and find_usages. It identifies the resource (symbols) and distinguishes itself from similarly named siblings without leaving ambiguity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives explicit routing guidance: use this instead of Grep for symbols, use search_text for raw text/comments, and use find_usages for references to a known symbol. This is actionable when-to-use and when-not-to-use guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_textARead-onlyIdempotent
Full-text search across all indexed files. Supports regex, glob file patterns, language filter. Use for finding strings, comments, TODOs, config values, error messages — anything not captured as a symbol. For symbol search (functions, classes) use search instead. Read-only. Returns JSON: { matches: [{ file, line, text, context }], total_matches }. Set grouping: "by_file" to deduplicate file paths in results with many hits.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search string or regex pattern | |
| grouping | No | Payload shape. "flat" (default) is a single matches[] array; "by_file" groups hits per file — saves tokens on long paths with many hits. | flat |
| is_regex | No | Treat query as regex (default false) | |
| language | No | Filter by language (e.g. "typescript", "python") | |
| timeout_ms | No | Wall-clock budget in ms — caps a catastrophic-backtracking regex. Default 2000; 0 disables. | |
| max_results | No | Max matches to return (default 50) | |
| file_pattern | Yes | Glob filter, e.g. "src/**/*.ts" | |
| context_lines | No | Lines of context before/after each match (default 0 — set higher if you need surrounding code) | |
| case_sensitive | No | Case-sensitive search (default false) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so no contradiction exists. The description adds meaningful behavioral detail beyond annotations: it discloses the exact JSON return shape, the existence of total_matches, and the grouping option to deduplicate file paths — useful operational context. It doesn't fully describe all edge behaviors (e.g., timeout semantics), but given the annotation coverage, the added context earns a 4.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is three sentences with no fluff. It front-loads the core purpose, follows with explicit usage guidance and sibling routing, then closes with return-format and grouping behavior. Every sentence adds distinct agent-relevant information; nothing is redundant or wasted.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite having nine parameters and no output schema, the description provides the crucial context an agent needs: the scope ('all indexed files'), the intended use cases, the sibling distinction, the return payload shape, and a practical tip for handling many hits. The remaining param details are fully covered by the rich schem, so this description is complete enough for correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3 even without parameter details in the description. The description does add a little extra parameter meaning — notably the grouping by_file tip to deduplicate file paths — but this largely mirrors the schema's own grouping description ('saves tokens on long paths with many hits'). The description adds no significant new parameter semantics beyond the schema's comprehensive coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb and resource: 'Full-text search across all indexed files.' It enumerates supported features (regex, glob, language filter) and concrete use cases (strings, comments, TODOs, config values, error messages), while explicitly distinguishing itself from the symbol-search sibling 'search.' This makes the tool's purpose unmistakable and differentiates it clearly from siblings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly states when to use this tool: 'Use for finding strings, comments, TODOs, config values, error messages — anything not captured as a symbol.' It also names the alternative: 'For symbol. search (functions, classes) use search instead.' This is a clear when/when-not routing with an explicit alternative, requiring no inference from the agent.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
suggest_queriesARead-onlyIdempotent
Onboarding helper: shows top imported files, most connected symbols (PageRank), language stats, and example tool calls. Call this first when exploring an unfamiliar project. For a structured project map use get_project_map instead. Read-only. Returns JSON: { topFiles, topSymbols, languageStats, exampleQueries }.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description confirms read-only behavior, consistent with the readOnlyHint/idempotentHint annotations, and adds a concrete response shape even without an output schema. It does not mention edge cases like rate limits or authentication, but these are less critical for a read-only onboarding helper.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Every sentence earns its place: the onboarder identity is front-loaded, usage timing is clear, the alternative is named, and the JSON return shape is compactly listed. There is no filler or redundant schema repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter read-only tool with no output schema, the description covers purpose, output fields, usage timing, and the relevant sibling. Nothing an agent needs to call this correctly is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so schema coverage is trivially 100% and the baseline is 4. The description adds no parameter details because there are none; instead it clarifies what the no-input call returns, which is sufficient.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('shows') and names the resource types it exposes: top imported files, connected symbols, language stats, and example tool calls. It also explicitly differentiates from get_project_map, so an agent can distinguish it from siblings without opening schemas.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It states the exact condition for use — 'Call this first when exploring an unfamiliar project' — and names the alternative, get_project_map, for a structured project map. This gives clear when-to-use and when-not-to-use guidance with an explicit replacement.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
56 tool updates
v3.3.0- Removed
apply_codemod - Removed
assess_change_risk - Changed
batch1 field changed- removed
Input schema / $schemaRemoved value: -"http://json-schema.org/draft-07/schema#"
- Removed
check_duplication - Removed
check_quality_gates - Removed
check_rename - Removed
detect_antipatterns - Changed
find_usages1 field changed- removed
Input schema / $schemaRemoved value: -"http://json-schema.org/draft-07/schema#"
- Changed
get_call_graph1 field changed- removed
Input schema / $schemaRemoved value: -"http://json-schema.org/draft-07/schema#"
- Changed
get_change_impact1 field changed- removed
Input schema / $schemaRemoved value: -"http://json-schema.org/draft-07/schema#"
- Removed
get_changed_symbols - Removed
get_circular_imports - Removed
get_complexity_report - Removed
get_complexity_trend - Changed
get_context_bundle1 field changed- removed
Input schema / $schemaRemoved value: -"http://json-schema.org/draft-07/schema#"
- Removed
get_control_flow - Removed
get_coupling - Removed
get_coupling_trend - Changed
get_coverage_report1 field changed- removed
Input schema / $schemaRemoved value: -"http://json-schema.org/draft-07/schema#"
- Removed
get_dead_code - Removed
get_dead_exports - Removed
get_env_vars - Changed
get_feature_context3 fields changed- removed
Input schema / $schemaRemoved value: -"http://json-schema.org/draft-07/schema#" - added
Input schema / properties / detail_levelAdded value: +{ + "description": "Output verbosity. \"minimal\" returns ~40-60% fewer tokens (drops scores, fqn, signatures, summaries — keeps name/file/line). Use when you only need to pick a candidate before drilling in with get_symbol. Default: \"default\".", + "enum": [ + "minimal", + "default", + "full" + ], + "type": "string" +} - changed
Input schema / properties / output_format / descriptionPrevious value: -"Output format. \"json\" (default) returns structured items; \"markdown\" returns LLM-friendly fenced code blocks (~15-20% token savings, easier for the model to read); \"toon\" returns Token-Oriented Object Notation — 30-60% fewer tokens, lossless."New value: +"\"json\" (default, structured items), \"markdown\" (fenced code blocks, ~15-20% cheaper), or \"toon\" (lossless, 30-60% fewer tokens)."
- Removed
get_implementations - Changed
get_index_health1 field changed- removed
Input schema / $schemaRemoved value: -"http://json-schema.org/draft-07/schema#"
- Changed
get_optimization_report1 field changed- removed
Input schema / $schemaRemoved value: -"http://json-schema.org/draft-07/schema#"
- Changed
get_outline3 fields changed- removed
Input schema / $schemaRemoved value: -"http://json-schema.org/draft-07/schema#" - changed
Input schema / properties / nested / descriptionPrevious value: -"When true, walks the body of each top-level symbol whose LOC exceeds min_loc_for_nesting and emits inner function-like declarations as additional rows carrying `parentId` + `depth`. Default false — fully backward compatible."New value: +"Walk the body of each top-level symbol past min_loc_for_nesting and emit inner declarations as extra rows carrying `parentId` + `depth`. Default false." - changed
Input schema / properties / output_format / descriptionPrevious value: -"Output format. \"json\" (default) returns JSON; \"toon\" returns Token-Oriented Object Notation — 30-60% fewer tokens, lossless. \"markdown\" is unsupported here and behaves as json."New value: +"\"json\" (default) or \"toon\" (lossless, 30-60% fewer tokens). \"markdown\" is unsupported here and behaves as json."
- Changed
get_preset_info1 field changed- removed
Input schema / $schemaRemoved value: -"http://json-schema.org/draft-07/schema#"
- Changed
get_project_map1 field changed- removed
Input schema / $schemaRemoved value: -"http://json-schema.org/draft-07/schema#"
- Changed
get_real_savings1 field changed- removed
Input schema / $schemaRemoved value: -"http://json-schema.org/draft-07/schema#"
- Removed
get_related_symbols - Changed
get_session_analytics1 field changed- removed
Input schema / $schemaRemoved value: -"http://json-schema.org/draft-07/schema#"
- Removed
get_session_resume - Changed
get_session_stats1 field changed- removed
Input schema / $schemaRemoved value: -"http://json-schema.org/draft-07/schema#"
- Changed
get_symbol2 fields changed- removed
Input schema / $schemaRemoved value: -"http://json-schema.org/draft-07/schema#" - changed
Input schema / properties / verify_against_git / descriptionPrevious value: -"When true, compare the indexed source against the current git HEAD slice for that file and line range. If they differ, the response includes `git_mismatch: true` indicating the index may be stale. Read-only — never writes. Silently skipped when git is unavailable or the file is not tracked."New value: +"Compare the indexed source against the current git HEAD slice; mismatches set `git_mismatch: true` in the response (index may be stale). Read-only. Silently skipped when git is unavailable or the file is untracked."
- Removed
get_symbol_complexity_trend - Changed
get_task_context3 fields changed- removed
Input schema / $schemaRemoved value: -"http://json-schema.org/draft-07/schema#" - added
Input schema / properties / detail_levelAdded value: +{ + "description": "Output verbosity. \"minimal\" returns ~40-60% fewer tokens (drops scores, fqn, signatures, summaries — keeps name/file/line). Use when you only need to pick a candidate before drilling in with get_symbol. Default: \"default\".", + "enum": [ + "minimal", + "default", + "full" + ], + "type": "string" +} - changed
Input schema / properties / output_format / descriptionPrevious value: -"Output format. \"json\" (default) returns structured fields; \"markdown\" returns a single LLM-optimized document with code fences (~15-20% token savings)."New value: +"\"json\" (default, structured fields) or \"markdown\" (single LLM-optimized document with code fences, ~15-20% cheaper)."
- Removed
get_tech_debt - Removed
get_tests_for - Changed
get_usage_trends1 field changed- removed
Input schema / $schemaRemoved value: -"http://json-schema.org/draft-07/schema#"
- Removed
get_workspace_map - Changed
invalidate_decision1 field changed- removed
Input schema / $schemaRemoved value: -"http://json-schema.org/draft-07/schema#"
- Added
load_tools - Changed
mine_sessions5 fields changed- removed
Input schema / $schemaRemoved value: -"http://json-schema.org/draft-07/schema#" - changed
Input schema / properties / incremental_cursor / descriptionPrevious value: -"Per-call override for `memory.mining.incrementalCursor`. When true (default), reuse byte-offset cursors so appended turns get re-processed; when false, fall back to legacy binary mined/unmined semantics."New value: +"Per-call override for `memory.mining.incrementalCursor`. true (default) reuses byte-offset cursors for appended turns; false falls back to legacy mined/unmined semantics." - changed
Input schema / properties / reject_threshold / descriptionPrevious value: -"Memoir reject floor (default: decisions.reject_threshold from config, fallback 0.45). Decisions in [reject_threshold, review_threshold) go into the review queue; below reject_threshold they are dropped."New value: +"Reject floor (default: config decisions.reject_threshold, fallback 0.45). Decisions in [reject_threshold, review_threshold) queue for review; below it, dropped." - changed
Input schema / properties / review_threshold / descriptionPrevious value: -"Memoir auto-approve cutoff (default: decisions.review_threshold from config, fallback 0.75). Decisions ≥ this enter the active knowledge graph immediately."New value: +"Auto-approve cutoff (default: config decisions.review_threshold, fallback 0.75). Decisions ≥ this enter the active graph immediately." - changed
Input schema / properties / strategy / descriptionPrevious value: -"Extraction strategy. regex (default): free, fast, low recall. llm: uses AI provider, costs tokens, higher recall. hybrid: regex + LLM safety net (recommended when AI configured). Falls back to regex with a warning if llm/hybrid is requested but no AI provider is configured."New value: +"Extraction strategy: regex (default, free/fast/low recall), llm (AI provider, costs tokens, higher recall), hybrid (regex + LLM safety net). Falls back to regex with a warning if no AI provider is configured."
- Changed
plan_turn1 field changed- removed
Input schema / $schemaRemoved value: -"http://json-schema.org/draft-07/schema#"
- Removed
predict_bugs - Changed
query_decisions6 fields changed- removed
Input schema / $schemaRemoved value: -"http://json-schema.org/draft-07/schema#" - changed
Input schema / properties / git_branch / descriptionPrevious value: -"Branch filter. \"current\" (default) → current branch + branch-agnostic decisions. \"all\" → every branch. Any other value → that specific branch + branch-agnostic decisions."New value: +"Branch filter: \"current\" (default) = current branch + branch-agnostic; \"all\" = every branch; any other value = that branch + branch-agnostic." - changed
Input schema / properties / index_only / descriptionPrevious value: -"Progressive disclosure (default: false). When true, each decision is returned WITHOUT its full `content` — just id, title, type, code anchors, tags, and a ~1-line `summary`. Pick the relevant ids cheaply, then pull full content with `get_decision`. Pure token-saver."New value: +"Progressive disclosure (default false). true omits full `content` — just id, title, type, anchors, tags, ~1-line `summary`. Pick ids cheaply, then pull full content with `get_decision`." - changed
Input schema / properties / order_by / descriptionPrevious value: -"Result ordering. \"recency\" (default): valid_from DESC. \"created_at\": created_at DESC. \"heat\": time-decay scoring biased toward frequently-recalled + fresh decisions. When heat is disabled in config, \"heat\" gracefully degrades to \"recency\"."New value: +"Result ordering: \"recency\" (default, valid_from DESC), \"created_at\" DESC, or \"heat\" (time-decay favoring frequently-recalled + fresh; degrades to recency if disabled in config)." - changed
Input schema / properties / verification / descriptionPrevious value: -"Filter by verification verdict (implies verify). \"stale\" returns any flagged row (symbol_missing OR code_changed); \"ok\" returns only verified-fresh rows. Omit to return all rows annotated in place."New value: +"Filter by verification verdict (implies verify=true). \"stale\" = any flagged row; \"ok\" = verified-fresh only. Omit to return all rows annotated in place." - changed
Input schema / properties / verify / descriptionPrevious value: -"Staleness verification (default: true). When true, each decision linked to a `symbol_id` is checked against the live index + git history; rows whose code was deleted/renamed or materially changed since `created_at` are flagged with `verification` (\"symbol_missing\" | \"code_changed\") and `stale: true`. Pass false to skip the check entirely."New value: +"Staleness verification (default true). Checks each `symbol_id`-linked decision against the live index + git history; deleted/renamed/materially-changed code is flagged `verification` + `stale: true`. false skips the check."
- Changed
register_edit1 field changed- removed
Input schema / $schemaRemoved value: -"http://json-schema.org/draft-07/schema#"
- Removed
reindex - Changed
remember_decision1 field changed- removed
Input schema / $schemaRemoved value: -"http://json-schema.org/draft-07/schema#"
- Removed
remove_dead_code - Removed
scan_security - Changed
search14 fields changed- removed
Input schema / $schemaRemoved value: -"http://json-schema.org/draft-07/schema#" - changed
Input schema / properties / decorator / descriptionPrevious value: -"Filter to symbols with this decorator/annotation/attribute (e.g. \"Injectable\", \"Route\", \"Transactional\")"New value: +"Filter to symbols carrying this decorator/annotation/attribute" - changed
Input schema / properties / drill_from / descriptionPrevious value: -"Drill scope for mode=\"drill\" — a file path or symbol_id. Results are restricted to the subtree rooted here."New value: +"[mode=\"drill\"] File path or symbol_id to restrict results to." - changed
Input schema / properties / fusion / descriptionPrevious value: -"Enable Signal Fusion Pipeline — multi-channel WRR ranking across lexical (BM25), structural (PageRank), similarity (embeddings), and identity (exact/prefix/segment match). Produces better results than single-channel search."New value: +"Enable Signal Fusion — multi-channel WRR ranking across lexical (BM25), structural (PageRank), similarity (embeddings), and identity match. Weights come from `tune_weights`." - removed
Input schema / properties / fusion_debugRemoved value: -{ - "description": "Include per-channel rank contributions in fusion results.", - "type": "boolean" -} - removed
Input schema / properties / fusion_weightsRemoved value: -{ - "description": "Per-channel weights for fusion (auto-normalized). Defaults: lexical=0.4, structural=0.25, similarity=0.2, identity=0.15.", - "properties": { - "identity": { - "maximum": 1, - "minimum": 0, - "type": "number" - }, - "lexical": { - "maximum": 1, - "minimum": 0, - "type": "number" - }, - "similarity": { - "maximum": 1, - "minimum": 0, - "type": "number" - }, - "structural": { - "maximum": 1, - "minimum": 0, - "type": "number" - } - }, - "type": "object" -} - changed
Input schema / properties / fuzzy / descriptionPrevious value: -"Enable fuzzy search (trigram + Levenshtein). Auto-enabled when exact search returns 0 results."New value: +"Typo-tolerant search. Auto-enabled when exact search returns 0 results." - changed
Input schema / properties / fuzzy_threshold / descriptionPrevious value: -"Minimum Jaccard trigram similarity (default 0.3)"New value: +"[fuzzy] Min trigram similarity (default 0.3)" - changed
Input schema / properties / max_edit_distance / descriptionPrevious value: -"Maximum Levenshtein edit distance (default 3)"New value: +"[fuzzy] Max edit distance (default 3)" - changed
Input schema / properties / mode / descriptionPrevious value: -"Memoir-style retrieval mode: single (default — top-K), tiered (high/medium/low buckets), drill (scoped to drill_from), flat (raw FTS, no PageRank), get (exact lookup). Omit to auto-pick (path-shaped query → get, otherwise → single)."New value: +"single (default): top-K. tiered: high/medium/low buckets. drill: scoped to drill_from. flat: raw FTS, no PageRank. get: exact lookup. Omit to auto-pick." - changed
Input schema / properties / output_format / descriptionPrevious value: -"Output format. \"json\" (default) returns JSON; \"toon\" returns Token-Oriented Object Notation — 30-60% fewer tokens, lossless. \"markdown\" is unsupported here and behaves as json."New value: +"\"json\" (default) or \"toon\" (lossless, 30-60% fewer tokens). \"markdown\" behaves as json here." - added
Input schema / properties / retrieverAdded value: +{ + "description": "Run one named retrieval algorithm instead of the mode dispatcher. Ignores mode/filters/fuzzy/fusion; returns { retriever, items, total }.", + "enum": [ + "lexical", + "semantic", + "hybrid", + "summary", + "feeling_lucky", + "graph_completion" + ], + "type": "string" +} - changed
Input schema / properties / semantic / descriptionPrevious value: -"Semantic mode: auto (default — hybrid if AI available), on (force hybrid), off (lexical-only), only (pure vector). Requires AI provider + embed_repo for non-\"off\" modes."New value: +"auto (default): hybrid if AI available. on: force hybrid. off: lexical-only. only: pure vector. Non-\"off\" needs an AI provider + one embed_repo run." - changed
Input schema / properties / semantic_weight / descriptionPrevious value: -"Hybrid fusion weight in [0,1]. 0 = lexical only, 0.5 = balanced (default), 1 = semantic only."New value: +"[semantic] 0 = lexical only, 0.5 = balanced (default), 1 = vector only."
- Changed
search_text3 fields changed- removed
Input schema / $schemaRemoved value: -"http://json-schema.org/draft-07/schema#" - changed
Input schema / properties / grouping / descriptionPrevious value: -"Payload shape. \"flat\" returns a single matches[] array (default). \"by_file\" groups hits under each file — saves tokens on long paths with many hits."New value: +"Payload shape. \"flat\" (default) is a single matches[] array; \"by_file\" groups hits per file — saves tokens on long paths with many hits." - changed
Input schema / properties / timeout_ms / descriptionPrevious value: -"Wall-clock budget in milliseconds. Catastrophic-backtracking regex cannot pin a worker beyond this. Default 2000. Set 0 to disable."New value: +"Wall-clock budget in ms — caps a catastrophic-backtracking regex. Default 2000; 0 disables."
- Removed
self_audit - Changed
suggest_queries1 field changed- removed
Input schema / $schemaRemoved value: -"http://json-schema.org/draft-07/schema#"
99 tool updates
v1.47.1- Removed
add_decision - Removed
analyze_perf - Removed
apply_move - Removed
apply_rename - Removed
approve_decision - Removed
audit_config - Removed
benchmark_project - Removed
build_corpus - Removed
build_decision_clusters - Removed
change_signature - Removed
check_architecture - Removed
check_claudemd_drift - Removed
check_edit_safe - Removed
check_embedding_drift - Removed
compare_branches - Removed
consolidate_decisions - Removed
delete_corpus - Removed
detect_ast_clones - Removed
detect_communities - Removed
detect_drift - Removed
diff_graph_snapshots - Removed
discover_hermes_sessions - Removed
embed_repo - Removed
export_decisions - Removed
export_graph - Removed
export_security_context - Removed
extract_function - Removed
generate_docs - Removed
generate_insights_report - Removed
generate_sbom - Removed
get_api_surface - Removed
get_artifacts - Removed
get_cluster_decisions - Removed
get_co_changes - Removed
get_code_owners - Removed
get_communities - Removed
get_community - Removed
get_cross_domain_deps - Removed
get_cross_workspace_impact - Removed
get_dataflow - Removed
get_decision - Removed
get_decision_clusters - Removed
get_decision_stats - Removed
get_decision_timeline - Removed
get_dependency_diagram - Removed
get_domain_context - Removed
get_domain_map - Removed
get_edge_bottlenecks - Removed
get_file_health_timeline - Removed
get_git_churn - Removed
get_graph_timeline - Removed
get_health_trends - Removed
get_import_graph - Removed
get_minimal_context - Removed
get_package_deps - Removed
get_pagerank - Removed
get_plugin_registry - Removed
get_project_health - Removed
get_project_memo - Removed
get_refactor_candidates - Removed
get_risk_hotspots - Removed
get_session_journal - Removed
get_session_snapshot - Removed
get_suggested_questions - Removed
get_surprises - Removed
get_symbol_owners - Removed
get_type_hierarchy - Removed
get_untested_exports - Removed
get_untested_symbols - Removed
get_wake_up - Removed
graph_query - Removed
index_sessions - Removed
list_bundles - Removed
list_corpora - Removed
list_graph_snapshots - Removed
list_pins - Removed
pack_context - Removed
pin_file - Removed
pin_symbol - Removed
plan_batch_change - Removed
plan_refactoring - Removed
query_by_intent - Removed
query_corpus - Removed
refresh_co_changes - Removed
regenerate_project_memo - Removed
reject_decision - Removed
repair_index - Removed
scan_code_smells - Removed
search_bundles - Removed
search_sessions - Removed
search_with_mode - Removed
snapshot_graph - Removed
taint_analysis - Removed
traverse_graph - Removed
tune_decision_weights - Removed
tune_weights - Removed
unpin - Removed
verify_index - Removed
visualize_graph
1 tool update
v1.46.0- Changed
consolidate_decisions1 field changed- added
Input schema / properties / purge_low_qualityAdded value: +{ + "description": "Maintenance mode (no AI required). When true, invalidate active MINED/AUTO decisions that fail the quality gate — truncated mid-sentence titles, single-word or broken-encoding summaries, non-English fragments. Respects dry_run (default true → preview only). Manual decisions are never touched. Use this to clean legacy garbage produced before the extraction gate shipped.", + "type": "boolean" +}
8 tool updates
v1.43.3- Changed
apply_codemod4 fields changed- added
Input schema / properties / engineAdded value: +{ + "description": "Engine: \"auto\" (default — AST for ast-grep patterns on supported code files, else regex), \"ast\" (force ast-grep), \"regex\" (force text regex).", + "enum": [ + "auto", + "ast", + "regex" + ], + "type": "string" +} - changed
Input schema / properties / multiline / descriptionPrevious value: -"Enable multiline mode (dot matches newlines, patterns span lines)"New value: +"Regex engine only: multiline mode (dot matches newlines, patterns span lines)" - changed
Input schema / properties / pattern / descriptionPrevious value: -"Regex pattern to match (JavaScript regex syntax)"New value: +"Pattern to match. ast-grep pattern (e.g. \"foo($$$ARGS)\", \"console.log($A)\") for the AST engine, or a JavaScript regex for the text engine." - changed
Input schema / properties / replacement / descriptionPrevious value: -"Replacement string ($1, $2 for capture groups)"New value: +"Replacement template. AST engine: substitute captured metavariables ($A, $$$ARGS, or positional $1/$2). Regex engine: $1, $2 capture groups."
- Changed
check_quality_gates1 field changed- added
Input schema / properties / output_formatAdded value: +{ + "description": "Output format. \"json\" (default) returns the native gate report; \"sarif\" emits a SARIF 2.1.0 log (only warning/error gates become results) for code-scanning ingestion.", + "enum": [ + "json", + "sarif" + ], + "type": "string" +}
- Changed
detect_antipatterns1 field changed- added
Input schema / properties / output_formatAdded value: +{ + "description": "Output format. \"json\" (default) returns the native finding shape; \"sarif\" emits a SARIF 2.1.0 log for code-scanning ingestion.", + "enum": [ + "json", + "sarif" + ], + "type": "string" +}
- Added
get_decision - Added
get_file_health_timeline - Added
get_graph_timeline - Changed
query_decisions3 fields changed- added
Input schema / properties / index_onlyAdded value: +{ + "description": "Progressive disclosure (default: false). When true, each decision is returned WITHOUT its full `content` — just id, title, type, code anchors, tags, and a ~1-line `summary`. Pick the relevant ids cheaply, then pull full content with `get_decision`. Pure token-saver.", + "type": "boolean" +} - added
Input schema / properties / verificationAdded value: +{ + "description": "Filter by verification verdict (implies verify). \"stale\" returns any flagged row (symbol_missing OR code_changed); \"ok\" returns only verified-fresh rows. Omit to return all rows annotated in place.", + "enum": [ + "ok", + "symbol_missing", + "code_changed", + "stale" + ], + "type": "string" +} - added
Input schema / properties / verifyAdded value: +{ + "description": "Staleness verification (default: true). When true, each decision linked to a `symbol_id` is checked against the live index + git history; rows whose code was deleted/renamed or materially changed since `created_at` are flagged with `verification` (\"symbol_missing\" | \"code_changed\") and `stale: true`. Pass false to skip the check entirely.", + "type": "boolean" +}
- Changed
scan_security1 field changed- added
Input schema / properties / output_formatAdded value: +{ + "description": "Output format. \"json\" (default) returns the native finding shape; \"sarif\" emits a SARIF 2.1.0 log for GitHub/GitLab/Azure code-scanning ingestion.", + "enum": [ + "json", + "sarif" + ], + "type": "string" +}
2 tool updates
v1.43.2- Added
check_edit_safe - Changed
get_symbol1 field changed- added
Input schema / properties / verify_against_gitAdded value: +{ + "description": "When true, compare the indexed source against the current git HEAD slice for that file and line range. If they differ, the response includes `git_mismatch: true` indicating the index may be stale. Read-only — never writes. Silently skipped when git is unavailable or the file is not tracked.", + "type": "boolean" +}
106 tool updates
v1.41.0- Added
add_decision - Added
analyze_perf - Added
apply_codemod - Added
apply_move - Added
apply_rename - Added
approve_decision - Added
assess_change_risk - Added
audit_config - Added
batch - Added
benchmark_project - Added
build_corpus - Added
build_decision_clusters - Added
change_signature - Added
check_claudemd_drift - Added
check_embedding_drift - Added
check_quality_gates - Added
check_rename - Added
compare_branches - Added
consolidate_decisions - Added
delete_corpus - Added
detect_antipatterns - Added
detect_ast_clones - Added
detect_communities - Added
detect_drift - Added
diff_graph_snapshots - Added
discover_hermes_sessions - Added
export_decisions - Added
export_graph - Added
export_security_context - Added
extract_function - Added
generate_docs - Added
generate_sbom - Added
get_artifacts - Added
get_changed_symbols - Added
get_cluster_decisions - Added
get_co_changes - Added
get_communities - Added
get_community - Added
get_complexity_report - Added
get_control_flow - Added
get_coverage_report - Added
get_cross_domain_deps - Added
get_cross_workspace_impact - Added
get_dataflow - Added
get_dead_code - Added
get_decision_clusters - Added
get_decision_stats - Added
get_decision_timeline - Added
get_dependency_diagram - Added
get_domain_context - Added
get_domain_map - Added
get_git_churn - Added
get_health_trends - Added
get_optimization_report - Added
get_package_deps - Added
get_preset_info - Added
get_project_memo - Added
get_real_savings - Added
get_risk_hotspots - Added
get_session_analytics - Added
get_session_journal - Added
get_session_resume - Added
get_session_snapshot - Added
get_session_stats - Added
get_suggested_questions - Added
get_surprises - Added
get_tech_debt - Added
get_usage_trends - Added
get_wake_up - Added
get_workspace_map - Added
graph_query - Added
index_sessions - Added
invalidate_decision - Added
list_bundles - Added
list_corpora - Added
list_graph_snapshots - Added
list_pins - Added
mine_sessions - Added
pack_context - Added
pin_file - Added
pin_symbol - Added
plan_batch_change - Added
plan_refactoring - Added
plan_turn - Added
predict_bugs - Added
query_by_intent - Added
query_corpus - Added
query_decisions - Added
refresh_co_changes - Added
regenerate_project_memo - Added
reject_decision - Added
remember_decision - Added
remove_dead_code - Added
scan_code_smells - Added
scan_security - Added
search_bundles - Added
search_sessions - Added
search_text - Added
search_with_mode - Added
snapshot_graph - Added
taint_analysis - Added
traverse_graph - Added
tune_decision_weights - Added
tune_weights - Added
unpin - Added
visualize_graph
44 tool updates
- Added
check_architecture - Added
check_duplication - Added
embed_repo - Added
find_usages - Added
generate_insights_report - Added
get_api_surface - Added
get_call_graph - Added
get_change_impact - Added
get_circular_imports - Added
get_code_owners - Added
get_complexity_trend - Added
get_context_bundle - Added
get_coupling - Added
get_coupling_trend - Added
get_dead_exports - Added
get_edge_bottlenecks - Added
get_env_vars - Added
get_feature_context - Added
get_implementations - Added
get_import_graph - Added
get_index_health - Added
get_minimal_context - Added
get_outline - Added
get_pagerank - Added
get_plugin_registry - Added
get_project_health - Added
get_project_map - Added
get_refactor_candidates - Added
get_related_symbols - Added
get_symbol - Added
get_symbol_complexity_trend - Added
get_symbol_owners - Added
get_task_context - Added
get_tests_for - Added
get_type_hierarchy - Added
get_untested_exports - Added
get_untested_symbols - Added
register_edit - Added
reindex - Added
repair_index - Added
search - Added
self_audit - Added
suggest_queries - Added
verify_index
142 tool updates
v1.38.0- Removed
add_decision - Removed
analyze_perf - Removed
apply_codemod - Removed
apply_move - Removed
apply_rename - Removed
approve_decision - Removed
assess_change_risk - Removed
audit_config - Removed
batch - Removed
benchmark_project - Removed
build_corpus - Removed
change_signature - Removed
check_architecture - Removed
check_claudemd_drift - Removed
check_duplication - Removed
check_embedding_drift - Removed
check_quality_gates - Removed
check_rename - Removed
compare_branches - Removed
delete_corpus - Removed
detect_antipatterns - Removed
detect_ast_clones - Removed
detect_communities - Removed
detect_drift - Removed
diff_graph_snapshots - Removed
discover_hermes_sessions - Removed
embed_repo - Removed
export_graph - Removed
export_security_context - Removed
extract_function - Removed
find_usages - Removed
generate_docs - Removed
generate_insights_report - Removed
generate_sbom - Removed
get_api_surface - Removed
get_artifacts - Removed
get_call_graph - Removed
get_change_impact - Removed
get_changed_symbols - Removed
get_circular_imports - Removed
get_co_changes - Removed
get_code_owners - Removed
get_communities - Removed
get_community - Removed
get_complexity_report - Removed
get_complexity_trend - Removed
get_context_bundle - Removed
get_control_flow - Removed
get_coupling - Removed
get_coupling_trend - Removed
get_coverage_report - Removed
get_cross_domain_deps - Removed
get_cross_workspace_impact - Removed
get_dataflow - Removed
get_dead_code - Removed
get_dead_exports - Removed
get_decision_stats - Removed
get_decision_timeline - Removed
get_dependency_diagram - Removed
get_domain_context - Removed
get_domain_map - Removed
get_edge_bottlenecks - Removed
get_env_vars - Removed
get_feature_context - Removed
get_git_churn - Removed
get_health_trends - Removed
get_implementations - Removed
get_import_graph - Removed
get_index_health - Removed
get_minimal_context - Removed
get_optimization_report - Removed
get_outline - Removed
get_package_deps - Removed
get_pagerank - Removed
get_plugin_registry - Removed
get_preset_info - Removed
get_project_health - Removed
get_project_map - Removed
get_real_savings - Removed
get_refactor_candidates - Removed
get_related_symbols - Removed
get_risk_hotspots - Removed
get_session_analytics - Removed
get_session_journal - Removed
get_session_resume - Removed
get_session_snapshot - Removed
get_session_stats - Removed
get_suggested_questions - Removed
get_surprises - Removed
get_symbol - Removed
get_symbol_complexity_trend - Removed
get_symbol_owners - Removed
get_task_context - Removed
get_tech_debt - Removed
get_tests_for - Removed
get_type_hierarchy - Removed
get_untested_exports - Removed
get_untested_symbols - Removed
get_usage_trends - Removed
get_wake_up - Removed
get_workspace_map - Removed
graph_query - Removed
index_sessions - Removed
invalidate_decision - Removed
list_bundles - Removed
list_corpora - Removed
list_graph_snapshots - Removed
list_pins - Removed
mine_sessions - Removed
pack_context - Removed
pin_file - Removed
pin_symbol - Removed
plan_batch_change - Removed
plan_refactoring - Removed
plan_turn - Removed
predict_bugs - Removed
query_by_intent - Removed
query_corpus - Removed
query_decisions - Removed
refresh_co_changes - Removed
register_edit - Removed
reindex - Removed
reject_decision - Removed
remember_decision - Removed
remove_dead_code - Removed
repair_index - Removed
scan_code_smells - Removed
scan_security - Removed
search - Removed
search_bundles - Removed
search_sessions - Removed
search_text - Removed
search_with_mode - Removed
self_audit - Removed
snapshot_graph - Removed
suggest_queries - Removed
taint_analysis - Removed
traverse_graph - Removed
tune_weights - Removed
unpin - Removed
verify_index - Removed
visualize_graph
8 tool updates
v1.36.1- Changed
audit_config2 fields changed- added
Input schema / properties / drift_onlyAdded value: +{ + "description": "E14 — restrict output to drift-class categories only (dead_path + dead_*_ref + oversized_section). Implies include_drift. Use when you only care about agent-config drift.", + "type": "boolean" +} - added
Input schema / properties / include_driftAdded value: +{ + "description": "E14 — add CLAUDE.md drift detection (dead_tool_ref, dead_skill_ref, dead_command_ref, oversized_section). Default false for back-compat.", + "type": "boolean" +}
- Added
check_claudemd_drift - Added
list_pins - Added
pin_file - Added
pin_symbol - Added
remember_decision - Added
search_with_mode - Added
unpin
135 tool updates
v1.35.1- Changed
add_decision3 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - added
Input schema / properties / git_branchAdded value: +{ + "anyOf": [ + { + "maxLength": 256, + "type": "string" + }, + { + "type": "null" + } + ], + "description": "Git branch this decision belongs to. Omit to auto-detect from the project root, or pass null to make the decision branch-agnostic (visible from every branch)." +} - changed
Input schema / requiredPrevious value: -[ - "title", - "content", - "type" -]New value: +[ + "title", + "content", + "type", + "file_path" +]
- Added
analyze_perf - Changed
apply_codemod1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Changed
apply_move2 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - added
Input schema / requiredAdded value: +[ + "symbol_id", + "source_file", + "new_path" +]
- Changed
apply_rename1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Added
approve_decision - Changed
assess_change_risk2 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - added
Input schema / requiredAdded value: +[ + "file_path", + "symbol_id" +]
- Changed
audit_config1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Changed
batch3 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - removed
Input schema / properties / calls / items / additionalPropertiesRemoved value: -false - added
Input schema / properties / calls / items / properties / args / propertyNamesAdded value: +{ + "type": "string" +}
- Changed
benchmark_project3 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - added
Input schema / properties / seed / maximumAdded value: +9007199254740991 - added
Input schema / properties / seed / minimumAdded value: +-9007199254740991
- Added
build_corpus - Changed
change_signature7 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - removed
Input schema / properties / changes / items / additionalPropertiesRemoved value: -false - removed
Input schema / properties / changes / items / properties / add_param / additionalPropertiesRemoved value: -false - added
Input schema / properties / changes / items / properties / add_param / properties / position / maximumAdded value: +9007199254740991 - changed
Input schema / properties / changes / items / properties / add_param / requiredPrevious value: -[ - "name" -]New value: +[ + "name", + "type", + "default_value" +] - removed
Input schema / properties / changes / items / properties / remove_param / additionalPropertiesRemoved value: -false - removed
Input schema / properties / changes / items / properties / rename_param / additionalPropertiesRemoved value: -false
- Changed
check_architecture2 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - removed
Input schema / properties / layers / items / additionalPropertiesRemoved value: -false
- Changed
check_duplication1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Added
check_embedding_drift - Changed
check_quality_gates7 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - removed
Input schema / properties / config / additionalPropertiesRemoved value: -false - removed
Input schema / properties / config / properties / rules / additionalProperties / additionalPropertiesRemoved value: -false - added
Input schema / properties / config / properties / rules / additionalProperties / properties / threshold / anyOfAdded value: +[ + { + "type": "number" + }, + { + "type": "string" + } +] - removed
Input schema / properties / config / properties / rules / additionalProperties / properties / threshold / typeRemoved value: -[ - "number", - "string" -] - added
Input schema / properties / config / properties / rules / propertyNamesAdded value: +{ + "type": "string" +} - added
Input schema / requiredAdded value: +[ + "since" +]
- Changed
check_rename1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Changed
compare_branches2 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - changed
Input schema / requiredPrevious value: -[ - "branch" -]New value: +[ + "branch", + "base" +]
- Added
delete_corpus - Changed
detect_antipatterns2 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - changed
Input schema / properties / category / items / enumPrevious value: -[ - "n_plus_one_risk", - "missing_eager_load", - "unbounded_query", - "event_listener_leak", - "circular_dependency", - "missing_index", - "memory_leak" -]New value: +[ + "n_plus_one_risk", + "missing_eager_load", + "unbounded_query", + "event_listener_leak", + "circular_dependency", + "missing_index", + "memory_leak", + "god_class", + "long_method", + "long_parameter_list", + "deep_nesting" +]
- Added
detect_ast_clones - Changed
detect_communities2 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - added
Input schema / properties / seedAdded value: +{ + "description": "PRNG seed for the Leiden node-shuffle. Same seed reproduces identical community IDs across runs. Default 0.", + "maximum": 4294967295, + "minimum": 0, + "type": "integer" +}
- Changed
detect_drift2 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - added
Input schema / properties / since_days / maximumAdded value: +9007199254740991
- Added
diff_graph_snapshots - Removed
discover_claude_sessions - Added
discover_hermes_sessions - Changed
embed_repo1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Added
export_graph - Added
export_security_context - Changed
extract_function3 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - added
Input schema / properties / end_line / maximumAdded value: +9007199254740991 - added
Input schema / properties / start_line / maximumAdded value: +9007199254740991
- Changed
find_usages4 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - added
Input schema / properties / detail_levelAdded value: +{ + "description": "Output verbosity. \"minimal\" returns ~40-60% fewer tokens (drops scores, fqn, signatures, summaries — keeps name/file/line). Use when you only need to pick a candidate before drilling in with get_symbol. Default: \"default\".", + "enum": [ + "minimal", + "default", + "full" + ], + "type": "string" +} - added
Input schema / properties / include_ambiguous_text_matchedAdded value: +{ + "description": "Keep text_matched edges whose target name collides with >=3 other symbols (default false — they produce phantom god-nodes).", + "type": "boolean" +} - added
Input schema / requiredAdded value: +[ + "symbol_id", + "fqn", + "file_path" +]
- Changed
generate_docs2 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - added
Input schema / requiredAdded value: +[ + "path" +]
- Added
generate_insights_report - Changed
generate_sbom1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Removed
get_api_contract - Changed
get_api_surface1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Changed
get_artifacts2 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - added
Input schema / requiredAdded value: +[ + "query" +]
- Changed
get_call_graph2 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - added
Input schema / requiredAdded value: +[ + "symbol_id", + "fqn" +]
- Changed
get_change_impact2 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - added
Input schema / requiredAdded value: +[ + "file_path", + "symbol_id" +]
- Changed
get_changed_symbols2 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - added
Input schema / requiredAdded value: +[ + "until" +]
- Changed
get_co_changes2 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - added
Input schema / properties / min_count / maximumAdded value: +9007199254740991
- Changed
get_code_owners1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Changed
get_community2 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - added
Input schema / properties / id / maximumAdded value: +9007199254740991
- Changed
get_complexity_report2 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - added
Input schema / properties / min_cyclomatic / maximumAdded value: +9007199254740991
- Changed
get_complexity_trend1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Changed
get_context_bundle2 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - added
Input schema / requiredAdded value: +[ + "symbol_id", + "fqn" +]
- Removed
get_contract_drift - Removed
get_contract_versions - Changed
get_control_flow2 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - added
Input schema / requiredAdded value: +[ + "symbol_id", + "fqn" +]
- Changed
get_coupling1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Changed
get_coupling_trend2 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - added
Input schema / properties / since_days / maximumAdded value: +9007199254740991
- Changed
get_cross_domain_deps2 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - added
Input schema / requiredAdded value: +[ + "domain" +]
- Removed
get_cross_service_impact - Changed
get_cross_workspace_impact1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Changed
get_dataflow2 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - added
Input schema / requiredAdded value: +[ + "fqn" +]
- Changed
get_dead_code1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Changed
get_dead_exports1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Changed
get_decision_timeline1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Changed
get_dependency_diagram1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Changed
get_domain_context1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Changed
get_domain_map1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Added
get_edge_bottlenecks - Changed
get_env_vars2 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - added
Input schema / requiredAdded value: +[ + "file" +]
- Changed
get_feature_context2 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - added
Input schema / properties / output_formatAdded value: +{ + "description": "Output format. \"json\" (default) returns structured items; \"markdown\" returns LLM-friendly fenced code blocks (~15-20% token savings, easier for the model to read).", + "enum": [ + "json", + "markdown" + ], + "type": "string" +}
- Changed
get_git_churn2 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - added
Input schema / properties / since_days / maximumAdded value: +9007199254740991
- Changed
get_health_trends2 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - added
Input schema / requiredAdded value: +[ + "file_path", + "module" +]
- Changed
get_implementations1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Changed
get_import_graph1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Added
get_minimal_context - Changed
get_optimization_report1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Changed
get_outline2 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - added
Input schema / properties / detail_levelAdded value: +{ + "description": "Output verbosity. \"minimal\" returns ~40-60% fewer tokens (drops scores, fqn, signatures, summaries — keeps name/file/line). Use when you only need to pick a candidate before drilling in with get_symbol. Default: \"default\".", + "enum": [ + "minimal", + "default", + "full" + ], + "type": "string" +}
- Changed
get_package_deps1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Changed
get_pagerank1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Changed
get_project_map1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Changed
get_real_savings1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Changed
get_refactor_candidates3 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - added
Input schema / properties / min_callers / maximumAdded value: +9007199254740991 - added
Input schema / properties / min_cyclomatic / maximumAdded value: +9007199254740991
- Changed
get_related_symbols1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Changed
get_risk_hotspots3 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - added
Input schema / properties / min_cyclomatic / maximumAdded value: +9007199254740991 - added
Input schema / properties / since_days / maximumAdded value: +9007199254740991
- Removed
get_service_deps - Removed
get_service_map - Changed
get_session_analytics2 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - added
Input schema / requiredAdded value: +[ + "session_id" +]
- Changed
get_session_resume1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Changed
get_session_snapshot1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Removed
get_subproject_clients - Removed
get_subproject_graph - Removed
get_subproject_impact - Added
get_suggested_questions - Added
get_surprises - Changed
get_symbol2 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - added
Input schema / requiredAdded value: +[ + "symbol_id", + "fqn" +]
- Changed
get_symbol_complexity_trend2 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - added
Input schema / properties / since_days / maximumAdded value: +9007199254740991
- Changed
get_symbol_owners1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Changed
get_task_context2 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - added
Input schema / properties / output_formatAdded value: +{ + "description": "Output format. \"json\" (default) returns structured fields; \"markdown\" returns a single LLM-optimized document with code fences (~15-20% token savings).", + "enum": [ + "json", + "markdown" + ], + "type": "string" +}
- Changed
get_tech_debt1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Changed
get_tests_for2 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - added
Input schema / requiredAdded value: +[ + "symbol_id", + "fqn", + "file_path" +]
- Changed
get_type_hierarchy1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Changed
get_untested_exports1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Changed
get_untested_symbols1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Changed
get_usage_trends1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Changed
get_wake_up1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Changed
get_workspace_map1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Changed
graph_query1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Changed
index_sessions1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Changed
invalidate_decision2 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - added
Input schema / properties / id / maximumAdded value: +9007199254740991
- Added
list_corpora - Added
list_graph_snapshots - Changed
mine_sessions4 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - changed
Input schema / properties / min_confidence / descriptionPrevious value: -"Minimum confidence threshold for extracted decisions (default: 0.6)"New value: +"Legacy reject floor — drops decisions below this. Superseded by reject_threshold; kept for back-compat." - added
Input schema / properties / reject_thresholdAdded value: +{ + "description": "Memoir reject floor (default: decisions.reject_threshold from config, fallback 0.45). Decisions in [reject_threshold, review_threshold) go into the review queue; below reject_threshold they are dropped.", + "maximum": 1, + "minimum": 0, + "type": "number" +} - added
Input schema / properties / review_thresholdAdded value: +{ + "description": "Memoir auto-approve cutoff (default: decisions.review_threshold from config, fallback 0.75). Decisions ≥ this enter the active knowledge graph immediately.", + "maximum": 1, + "minimum": 0, + "type": "number" +}
- Changed
pack_context2 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - changed
Input schema / requiredPrevious value: -[ - "scope" -]New value: +[ + "scope", + "path", + "query" +]
- Changed
plan_batch_change2 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - changed
Input schema / requiredPrevious value: -[ - "package" -]New value: +[ + "package", + "from_version", + "to_version" +]
- Changed
plan_refactoring10 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - removed
Input schema / properties / changes / items / additionalPropertiesRemoved value: -false - removed
Input schema / properties / changes / items / properties / add_param / additionalPropertiesRemoved value: -false - added
Input schema / properties / changes / items / properties / add_param / properties / position / maximumAdded value: +9007199254740991 - changed
Input schema / properties / changes / items / properties / add_param / requiredPrevious value: -[ - "name" -]New value: +[ + "name", + "type", + "default_value" +] - removed
Input schema / properties / changes / items / properties / remove_param / additionalPropertiesRemoved value: -false - removed
Input schema / properties / changes / items / properties / rename_param / additionalPropertiesRemoved value: -false - added
Input schema / properties / end_line / maximumAdded value: +9007199254740991 - added
Input schema / properties / start_line / maximumAdded value: +9007199254740991 - changed
Input schema / requiredPrevious value: -[ - "type" -]New value: +[ + "type", + "new_name", + "target_file", + "source_file", + "new_path", + "file_path", + "function_name" +]
- Changed
plan_turn1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Changed
predict_bugs1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Changed
query_by_intent1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Added
query_corpus - Changed
query_decisions5 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - added
Input schema / properties / git_branchAdded value: +{ + "description": "Branch filter. \"current\" (default) → current branch + branch-agnostic decisions. \"all\" → every branch. Any other value → that specific branch + branch-agnostic decisions.", + "maxLength": 256, + "type": "string" +} - added
Input schema / properties / include_pendingAdded value: +{ + "description": "Also return decisions in the review queue (review_status=\"pending\"). Default: false — only auto-approved and approved rows are returned.", + "type": "boolean" +} - added
Input schema / properties / review_statusAdded value: +{ + "description": "Restrict to a single review tier (overrides default + include_pending). Use \"pending\" to fetch the review queue.", + "enum": [ + "pending", + "approved", + "rejected" + ], + "type": "string" +} - added
Input schema / requiredAdded value: +[ + "symbol_id", + "file_path", + "tag", + "as_of" +]
- Changed
refresh_co_changes1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Changed
register_edit1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Changed
reindex2 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - added
Input schema / properties / postprocessAdded value: +{ + "description": "Postprocess level. full = everything (default). minimal = skips LSP/env/snapshots. none = also skips edge resolution.", + "enum": [ + "full", + "minimal", + "none" + ], + "type": "string" +}
- Added
reject_decision - Changed
remove_dead_code1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Added
repair_index - Changed
scan_code_smells3 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - changed
Input schema / properties / category / items / enumPrevious value: -[ - "todo_comment", - "empty_function", - "hardcoded_value" -]New value: +[ + "todo_comment", + "empty_function", + "hardcoded_value", + "debug_artifact" +] - added
Input schema / requiredAdded value: +[ + "scope" +]
- Changed
scan_security2 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - changed
Input schema / requiredPrevious value: -[ - "rules" -]New value: +[ + "scope", + "rules" +]
- Changed
search6 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - added
Input schema / properties / detail_levelAdded value: +{ + "description": "Output verbosity. \"minimal\" returns ~40-60% fewer tokens (drops scores, fqn, signatures, summaries — keeps name/file/line). Use when you only need to pick a candidate before drilling in with get_symbol. Default: \"default\".", + "enum": [ + "minimal", + "default", + "full" + ], + "type": "string" +} - added
Input schema / properties / drill_fromAdded value: +{ + "description": "Drill scope for mode=\"drill\" — a file path or symbol_id. Results are restricted to the subtree rooted here.", + "maxLength": 512, + "type": "string" +} - removed
Input schema / properties / fusion_weights / additionalPropertiesRemoved value: -false - added
Input schema / properties / modeAdded value: +{ + "description": "Memoir-style retrieval mode: single (default — top-K), tiered (high/medium/low buckets), drill (scoped to drill_from), flat (raw FTS, no PageRank), get (exact lookup). Omit to auto-pick (path-shaped query → get, otherwise → single).", + "enum": [ + "single", + "tiered", + "drill", + "flat", + "get" + ], + "type": "string" +} - changed
Input schema / requiredPrevious value: -[ - "query" -]New value: +[ + "query", + "language", + "file_pattern" +]
- Changed
search_bundles1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Changed
search_sessions1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Changed
search_text3 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - added
Input schema / properties / timeout_msAdded value: +{ + "description": "Wall-clock budget in milliseconds. Catastrophic-backtracking regex cannot pin a worker beyond this. Default 2000. Set 0 to disable.", + "maximum": 30000, + "minimum": 0, + "type": "integer" +} - changed
Input schema / requiredPrevious value: -[ - "query" -]New value: +[ + "query", + "file_pattern" +]
- Added
snapshot_graph - Removed
subproject_add_repo - Removed
subproject_sync - Changed
taint_analysis2 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - added
Input schema / requiredAdded value: +[ + "scope" +]
- Added
traverse_graph - Added
tune_weights - Added
verify_index - Changed
visualize_graph2 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - added
Input schema / properties / include_bottlenecksAdded value: +{ + "description": "Annotate edges with bottleneckScore/isBridge and nodes with isArticulation (file granularity only). Default false.", + "type": "boolean" +}
- Removed
visualize_subproject_topology
124 tool updates
v0.1.0- First observed
add_decision - First observed
apply_codemod - First observed
apply_move - First observed
apply_rename - First observed
assess_change_risk - First observed
audit_config - First observed
batch - First observed
benchmark_project - First observed
change_signature - First observed
check_architecture - First observed
check_duplication - First observed
check_quality_gates - First observed
check_rename - First observed
compare_branches - First observed
detect_antipatterns - First observed
detect_communities - First observed
detect_drift - First observed
discover_claude_sessions - First observed
embed_repo - First observed
extract_function - First observed
find_usages - First observed
generate_docs - First observed
generate_sbom - First observed
get_api_contract - First observed
get_api_surface - First observed
get_artifacts - First observed
get_call_graph - First observed
get_change_impact - First observed
get_changed_symbols - First observed
get_circular_imports - First observed
get_co_changes - First observed
get_code_owners - First observed
get_communities - First observed
get_community - First observed
get_complexity_report - First observed
get_complexity_trend - First observed
get_context_bundle - First observed
get_contract_drift - First observed
get_contract_versions - First observed
get_control_flow - First observed
get_coupling - First observed
get_coupling_trend - First observed
get_coverage_report - First observed
get_cross_domain_deps - First observed
get_cross_service_impact - First observed
get_cross_workspace_impact - First observed
get_dataflow - First observed
get_dead_code - First observed
get_dead_exports - First observed
get_decision_stats - First observed
get_decision_timeline - First observed
get_dependency_diagram - First observed
get_domain_context - First observed
get_domain_map - First observed
get_env_vars - First observed
get_feature_context - First observed
get_git_churn - First observed
get_health_trends - First observed
get_implementations - First observed
get_import_graph - First observed
get_index_health - First observed
get_optimization_report - First observed
get_outline - First observed
get_package_deps - First observed
get_pagerank - First observed
get_plugin_registry - First observed
get_preset_info - First observed
get_project_health - First observed
get_project_map - First observed
get_real_savings - First observed
get_refactor_candidates - First observed
get_related_symbols - First observed
get_risk_hotspots - First observed
get_service_deps - First observed
get_service_map - First observed
get_session_analytics - First observed
get_session_journal - First observed
get_session_resume - First observed
get_session_snapshot - First observed
get_session_stats - First observed
get_subproject_clients - First observed
get_subproject_graph - First observed
get_subproject_impact - First observed
get_symbol - First observed
get_symbol_complexity_trend - First observed
get_symbol_owners - First observed
get_task_context - First observed
get_tech_debt - First observed
get_tests_for - First observed
get_type_hierarchy - First observed
get_untested_exports - First observed
get_untested_symbols - First observed
get_usage_trends - First observed
get_wake_up - First observed
get_workspace_map - First observed
graph_query - First observed
index_sessions - First observed
invalidate_decision - First observed
list_bundles - First observed
mine_sessions - First observed
pack_context - First observed
plan_batch_change - First observed
plan_refactoring - First observed
plan_turn - First observed
predict_bugs - First observed
query_by_intent - First observed
query_decisions - First observed
refresh_co_changes - First observed
register_edit - First observed
reindex - First observed
remove_dead_code - First observed
scan_code_smells - First observed
scan_security - First observed
search - First observed
search_bundles - First observed
search_sessions - First observed
search_text - First observed
self_audit - First observed
subproject_add_repo - First observed
subproject_sync - First observed
suggest_queries - First observed
taint_analysis - First observed
visualize_graph - First observed
visualize_subproject_topology
TDQS
Many tools have distinct purposes, but several overlap subtly: search/search_text/get_feature_context all handle text vs symbol lookup, and plan_turn, get_task_context, and suggest_queries each claim to be the 'first call' for different scenarios, creating potential misselection. Detailed cross-references help, but the boundaries are fine-grained enough that an agent could easily choose the wrong one.
The dominant get_* prefix for read-only tools is consistent, and mutating tools use concise verb_* names (register_edit, invalidate_decision, load_tools). A few outliers like search, search_text, plan_turn, and batch break the pattern, but naming is still predictable and readable overall.
28 tools is above the 25 threshold, and the surface spans three distinct domains: code intelligence, decision memory, and session analytics. Several analytics tools (get_session_analytics, get_optimization_report, get_real_savings, get_usage_trends, get_session_stats) could likely be consolidated, making the set feel larger than necessary for a focused server.
The decision store lifecycle is well-covered with remember, query, and invalidate, though an explicit update or add_decision tool is missing (add_decision is mentioned but not exposed). Code exploration is thoroughly covered with symbol lookup, outline, search, usages, call graphs, and context bundles, leaving only minor gaps like direct file-content retrieval by path.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Code intelligence platform for AI agents. 20 tools for architecture, security & impact analysis.
Hosted code graph over MCP: exact callers, dependencies, and cross-repo blast radius for AI agents.
251Ground-truth code graph for your codebase: exact callers, callees, symbols & dependencies.
Enterprise code intelligence for M&A, security audits, and tech debt. Hosted server with 200k free.
Related MCP Servers
- AlicenseAqualityCmaintenanceCross-repository code knowledge graph MCP server for Java, Kotlin, JavaScript, and TypeScript. Indexes source code into embedded KuzuDB via tree-sitter and exposes 30+ tools for call-flow tracing, multi-hop taint analysis (OWASP/CWE/PCI/STIG), entry-point reachability filtering, performance hotspot detection, and license compliance — without reading source files. 95% fewer tokens vs source-read331MIT
- AlicenseBqualityDmaintenanceInstant codebase knowledge graph MCP server. It auto-detects languages, indexes functions, classes, and call chains, enabling LLMs to navigate code in milliseconds.24MIT
- AlicenseNot gradedqualityAmaintenanceA persistent code-intelligence MCP server that builds a queryable knowledge graph of your codebase, enabling AI assistants to perform cross-file structural reasoning, dependency analysis, and blast radius detection.6MIT
- AlicenseNot gradedqualityBmaintenanceMulti-language code intelligence MCP server providing structured code analysis including symbol search, references, hierarchies, and change impact. Supports 25 languages with persistent indexing and LSP integration.71MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nikolai-vysotskyi/trace-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server