← Back to search

trace-mcp

nikolai-vysotskyi Scanned 6h ago

Framework-aware code intelligence MCP server — 60 framework integrations, 81 languages, up to 99% token reduction

D
46.6 / 100

Versions

1.46.1latest
Jul 27, 2026
1.46.0
Jul 7, 2026
1.45.3
Jul 6, 2026
1.45.2
Jul 6, 2026
1.45.1
Jul 6, 2026
+ show 75 moreshow less
1.45.0
Jul 4, 2026
1.44.0
Jul 2, 2026
1.43.3
Jun 27, 2026
1.43.2
Jun 26, 2026
1.43.1
Jun 16, 2026
1.43.0
Jun 15, 2026
1.42.0
Jun 11, 2026
1.41.3
Jun 1, 2026
1.41.2
Jun 1, 2026
1.41.1
May 29, 2026
1.41.0
May 29, 2026
1.40.0
May 28, 2026
1.39.4
May 25, 2026
1.39.3
May 24, 2026
1.39.2
May 18, 2026
1.39.1
May 18, 2026
1.39.0
May 18, 2026
1.38.0
May 18, 2026
1.37.0
May 15, 2026
1.36.1
May 14, 2026
1.36.0
May 13, 2026
1.35.1
May 11, 2026
1.35.0
May 10, 2026
1.34.2
May 10, 2026
1.33.0
Apr 30, 2026
1.32.7
Apr 29, 2026
1.32.6
Apr 29, 2026
1.32.5
Apr 28, 2026
1.32.4
Apr 28, 2026
1.32.3
Apr 28, 2026
1.32.2
Apr 28, 2026
1.32.1
Apr 28, 2026
1.32.0
Apr 28, 2026
1.31.0
Apr 24, 2026
1.30.0
Apr 23, 2026
1.29.0
Apr 22, 2026
1.28.0
Apr 21, 2026
1.27.0
Apr 20, 2026
1.26.0
Apr 20, 2026
1.25.0
Apr 18, 2026
1.24.0
Apr 17, 2026
1.23.1
Apr 15, 2026
1.23.0
Apr 15, 2026
1.22.0
Apr 15, 2026
1.21.2
Apr 14, 2026
1.20.1
Apr 13, 2026
1.20.0
Apr 13, 2026
1.19.0
Apr 12, 2026
1.18.0
Apr 12, 2026
1.17.0
Apr 12, 2026
1.16.1
Apr 12, 2026
1.16.0
Apr 12, 2026
1.15.2
Apr 12, 2026
1.15.1
Apr 12, 2026
1.15.0
Apr 12, 2026
1.14.1
Apr 9, 2026
1.14.0
Apr 9, 2026
1.13.0
Apr 9, 2026
1.12.0
Apr 7, 2026
1.11.0
Apr 7, 2026
1.10.0
Apr 7, 2026
1.9.0
Apr 7, 2026
1.8.0
Apr 7, 2026
1.7.0
Apr 7, 2026
1.6.1
Apr 6, 2026
1.6.0
Apr 6, 2026
1.5.4
Apr 6, 2026
1.5.3
Apr 6, 2026
1.4.1
Apr 5, 2026
1.2.1
Apr 5, 2026
1.1.0
Apr 5, 2026
1.0.11
Apr 5, 2026
1.0.10
Apr 5, 2026
1.0.9
Apr 5, 2026
0.1.0
Apr 4, 2026
PermissionsTool SafetyAuthAnnotationsCode QualityStabilitySpecVuln HistoryAuthorTransparencyCommunity

Tools 201

name
annotations: none low

description

search
annotations: none low

desc

get_outline
annotations: none low

desc

blocked_tool
annotations: none low

desc

blocked
annotations: none low

desc

get_user
annotations: none low

Fetch a user by ID

create_item
annotations: none low

Create a new item

echo
annotations: none low

Echo a string back.

text string
test-client
annotations: none low

mcp-sdk
annotations: none low

MCP tool registration

get_service_map
annotations: none low

Get map of all services, their APIs, and inter-service dependencies. Auto-detects services from Docker Compose or treats each repo as a service. Use to understand microservice topology. For subproject-level graph use get_subproject_graph instead. Read-only. Returns JSON: { services: [{ name, endpoints, dependencies }], total }.

get_cross_service_impact
annotations: none low

Analyze cross-service impact of changing an endpoint or event. Shows which services would be affected. Use before modifying a shared endpoint. For within-codebase impact use get_change_impact instead; for the full cross-repo blast radius use get_federation_impact. Read-only. Returns JSON: { service, affectedServices: [{ name, reason }], total }.

service string
get_api_contract
annotations: none low

Get API contract (OpenAPI/gRPC/GraphQL) for a service. Parses spec files found in the service repo. Use to inspect a service

service string
get_service_deps
annotations: none low

Get external service dependencies: which services this one calls (outgoing) and which call it (incoming). Use to understand a single service

service string
get_contract_drift
annotations: none low

Detect mismatches between API spec and implementation: endpoints in spec but not in code, or in code but not in spec. Use to verify API contract accuracy. For reading the contract itself use get_api_contract instead. Read-only. Returns JSON: { service, missingInCode, missingInSpec, total }.

service string
get_federation_impact
annotations: none low

Aggregates cross-repo impact into ONE call: if you change an endpoint, service, or symbol, this combines subproject client-call impact (which repos/files call it), cross-service edge impact (dependent services via HTTP/event edges), and contract drift (spec vs implementation) into a single blast-radius report — instead of manually chaining get_subproject_impact + get_cross_service_impact + get_contract_drift. Requires at least one of endpoint or service. Read-only. Returns JSON: { target, affected_clients, affected_services, contract_drift, risk_level, summary, total_affected }.

get_subproject_graph
annotations: none low

Show all subprojects and their cross-repo connections. A subproject is any working repository in your project ecosystem (microservices, frontends, backends, shared libraries, CLI tools, etc.). Displays repos, endpoints, client calls, and inter-repo dependency edges. Use to understand multi-repo topology. Register repos first with subproject_add_repo. Read-only. Returns JSON: { repos, endpoints, clientCalls, edges }.

get_subproject_impact
annotations: none low

Cross-repo impact analysis: find all client code across subprojects that would break if an endpoint changes. Resolves down to symbol level when per-repo indexes exist. Use before modifying a shared API endpoint; for the full cross-repo blast radius use get_federation_impact. Read-only. Returns JSON: { endpoint, affectedClients: [{ repo, file, line, callType }], total }.

subproject_add_repo
annotations: none low

Add a repository as a subproject of the current project. Pass `repo_path` for a local checkout, or `git_url` to shallow-clone a remote repo into .trace-mcp/subprojects/<owner>/<repo> first (idempotent — re-runs reuse the existing clone). A subproject is any working repository in your ecosystem: microservices, frontends, backends, shared libraries, CLI tools. Discovers services, parses API contracts (OpenAPI/gRPC/GraphQL), scans for HTTP client calls, and links them to known endpoints. Mutates the topology store; idempotent. Returns JSON: { added, services, contracts, clientCalls, cloned? }.

subproject_sync
annotations: none low

Re-scan all subprojects: re-discover services, re-parse contracts, re-scan client calls, and re-link everything. Mutates the topology store; idempotent. Use after code changes in subproject repos. Returns JSON: { synced, services, contracts, clientCalls }.

detect_topic_tunnels
annotations: none low

Cross-project topic tunnels: links between registered subprojects sharing canonical entities — manifest package names, top-level declared dependencies, and git contributors (bots filtered). Tunnel weight favors shared people/project names over common deps (noisy deps down-weighted). Use to discover hidden cross-repo coupling or seed cross-project search. Read-only. Returns JSON: { tunnels: [{ project_a, project_b, shared: [{ kind, canonical, display }], weight }], total }.

get_subproject_clients
annotations: none low

Find all client calls across subprojects that call a specific endpoint. Shows file, line, call type, and confidence. Use to find all consumers of an endpoint before modifying it. Read-only. Returns JSON: { endpoint, clients: [{ repo, file, line, callType, confidence }], total }.

get_contract_versions
annotations: none low

Show version history for a service API contract with breaking change detection between versions. Compares request/response schemas across snapshots to flag removed fields, type changes, and renames. Use to review API evolution. For current spec-vs-code drift use get_contract_drift instead. Read-only. Returns JSON: { service, versions: [{ version, date, breakingChanges }] }.

service string
discover_claude_sessions
annotations: none low

Scan ~/.claude/projects for projects Claude Code has touched on this machine, decode each directory name back to its absolute path, and report which ones still exist plus session-file count and last activity. With add_as_subprojects=true, every existing project is registered as a subproject in one call — useful for spinning up multi-repo intelligence after a fresh clone. Reads local filesystem; with add_as_subprojects=true also mutates topology store. Returns JSON: { projects: [{ path, sessions, lastActivity }], total }.

get_code_owners
annotations: none low

Git-based code ownership: who contributed most to specific files (git shortlog). Requires git. Use to identify who to ask about specific files. For symbol-level ownership use get_symbol_owners instead. Read-only. Returns JSON: [{ file, owners: [{ author, commits, percentage }] }].

visualize_subproject_topology
annotations: none low

Open interactive HTML visualization of the subproject topology: services as nodes, API calls as edges, health/risk indicators per service. Node size = endpoint count, color = health (green/yellow/red). Writes an HTML file to disk. Use for visual architecture review. Returns JSON: { outputPath, services, edges }.

get_runtime_profile
annotations: none low

Runtime profile for a symbol or route: call count, latency percentiles (p50/p95/p99), error rate, calls per hour. Requires OTLP trace ingestion. Read-only, queries external runtime data. Use for performance analysis of specific endpoints. Returns JSON: { symbol_id, callCount, latency: { p50, p95, p99 }, errorRate, callsPerHour }.

get_runtime_call_graph
annotations: none low

Actual call graph from runtime traces (vs static analysis). Shows observed call paths with call counts and latency. Requires OTLP trace ingestion. Read-only, queries external runtime data. For static call graph use get_call_graph instead. Returns JSON: { root, calls: [{ symbol, count, latency }] }.

get_endpoint_analytics
annotations: none low

Per-route analytics: request count, error rate, latency, caller services. Requires OTLP trace ingestion. Read-only, queries external runtime data. Use to understand endpoint performance and traffic. Returns JSON: { uri, method, requestCount, errorRate, latency, callerServices }.

uri string
get_runtime_deps
annotations: none low

Which external services (databases, caches, APIs, queues) does this code actually call at runtime. Based on OTLP traces. Read-only, queries external runtime data. Use to discover actual runtime dependencies vs static analysis. Returns JSON: { dependencies: [{ type, name, callCount }] }.

discover_hermes_sessions
annotations: none low

List Hermes Agent (NousResearch) sessions visible on this machine. Scans $HERMES_HOME (default ~/.hermes) for state.db plus any profiles/<name>/state.db. Hermes conversations are GLOBAL — results are NOT filtered by the current project. Read-only. Returns JSON: { enabled, sessions: [{ sessionId, sourcePath, profile, lastActivity, sizeBytes }], total }.

query_by_intent
annotations: none low

Map a business question to domain taxonomy → returns domain ownership and relevance scores (no source code). Use when you need to know WHICH DOMAIN owns specific functionality. For actual source code use get_feature_context instead. Read-only. Returns JSON: { symbols: [{ symbol_id, domain, relevance }] }.

query string
get_domain_map
annotations: none low

Get hierarchical map of business domains with key symbols per domain. Auto-builds domain taxonomy on first call using heuristic classification. Use to understand business domain boundaries. For specific domain code use get_domain_context instead. Read-only. Returns JSON: { domains: [{ name, children, symbols }] }.

depth number
get_domain_context
annotations: none low

Get all code related to a specific business domain. Supports

get_cross_domain_deps
annotations: none low

Show which business domains depend on which. Based on edges between symbols in different domains. Use to understand domain coupling. Read-only. Returns JSON: { dependencies: [{ from, to, edgeCount }] }.

graph_query
annotations: none low

Trace how named symbols relate in the dependency graph → returns subgraph + Mermaid diagram. Input is NATURAL LANGUAGE only — NOT SQL. Must contain symbol/class names (e.g.

depth number
traverse_graph
annotations: none low

Walk the dependency graph from a starting symbol or file using BFS/DFS, with a hard token budget on the response. Use when you want a structured

get_dataflow
annotations: none low

Intra-function dataflow analysis: track how each parameter flows through the function body — into which calls, where it gets mutated, and what is returned. Phase 1: single function scope. Use to understand data transformations within a function. For security-focused data flow use taint_analysis instead. Read-only. Returns JSON: { symbol_id, params: [{ name, flows: [{ target, mutated }] }], returnPaths }.

snapshot_graph
annotations: none low

Capture the current graph shape (file/symbol counts, edges by type, top in-degree files, communities, exported symbols) under a named label. Use as a checkpoint before/after a refactor; later compare with diff_graph_snapshots. Mutates a single graph_snapshots row; idempotent (re-stamps if name exists). Returns JSON: { id, name, captured_at, summary }.

list_graph_snapshots
annotations: none low

List previously captured graph snapshots, most recent first. Each entry includes its summary so you can inspect counts without diffing. Read-only. Returns JSON: { snapshots: [{ id, name, captured_at, summary }], total }.

diff_graph_snapshots
annotations: none low

Compare two named graph snapshots and report deltas in counts, communities, and top in-degree files. Use to track graph evolution over time without git as the axis (e.g. before/after a refactor, week-over-week health). Read-only. Returns JSON: { base, head, files, symbols, symbols_by_kind, edges_by_type, exported_symbols, communities, top_files }.

base string head string
get_graph_timeline
annotations: none low

Graph-evolution timeline: samples evenly-spaced historical commits (via git log) and reports file-count + commit churn per period, with a short narrative diff marker. Symbol/edge counts reflect the current HEAD only, not reconstructed per historical commit. For point-in-time named checkpoints use snapshot_graph + diff_graph_snapshots instead. Requires git. Read-only. Returns JSON: { since_days, granularity, periods: [{ period, commit, date, file_count, commits_in_period, files_changed, insertions, deletions, narrative }], current: { files, symbols, edges_by_type }, _tier, _methodology }.

export_graph
annotations: none low

Export the dependency graph in formats external tools understand. Supports GraphML (Gephi/yEd/NetworkX), Cypher (Neo4j import script), and Obsidian (markdown vault with [[wikilinks]]). Use to crunch the graph in tools that already exist — Cypher queries, betweenness-centrality in NetworkX, vault navigation. For interactive HTML use visualize_graph; for Mermaid/DOT diagrams use get_dependency_diagram. Read-only. Returns JSON: { format, content, node_count, edge_count }.

visualize_graph
annotations: none low

Open interactive HTML graph in browser showing file/symbol dependencies. Supports force/hierarchical/radial layouts, community coloring. Use granularity=symbol to see individual functions/classes/methods as nodes instead of files. Writes an HTML file to disk. For static Mermaid/DOT output use get_dependency_diagram instead. Returns JSON: { outputPath, nodes, edges }.

depth number
get_dependency_diagram
annotations: none low

Render dependency diagram for a file/directory path as Mermaid or DOT. Input: a path like

depth number scope string
search_text
annotations: none low

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: { files: [{ file, language, hits: [{ line, column, match, context }] }], total_matches } — hits grouped per file, so a long path is paid once. Pass `grouping:

query string is_regex boolean case_sensitive boolean
predict_bugs
annotations: none low

Heuristic bug-risk triage: ranks files by git churn, fix-commit ratio, complexity, coupling, PageRank, and author count — a prioritization heuristic, NOT a validated predictor (calibration notes in the response

limit number refresh boolean
detect_drift
annotations: none low

Detect architectural drift: cross-module co-change anomalies (files in different modules that always change together) and shotgun surgery patterns (commits touching 3+ modules). Requires git. Use to identify hidden coupling across modules. For file-pair co-changes use get_co_changes instead. Read-only. Returns JSON: { anomalies, shotgunSurgery, total }.

get_tech_debt
annotations: none low

Per-module tech debt score (A–F grade) combining: complexity, coupling instability, test coverage gaps, and git churn. Includes actionable recommendations. Use for architecture review and prioritizing cleanup. Read-only. Returns JSON: { modules: [{ module, grade, score, factors, recommendations }] }.

refresh boolean
assess_change_risk
annotations: none low

Before modifying a file or symbol, predict risk level (low/medium/high/critical) with contributing factors and recommended mitigations. Combines blast radius, complexity, git churn, test coverage, and coupling. Use as a quick risk check. For full impact report with affected tests and dependents use get_change_impact instead. Read-only. Returns JSON: { risk, level, factors: [{ name, value }], mitigations }.

get_health_trends
annotations: none low

Time-series health metrics for a file or module: bug score, complexity, coupling, churn over time. Populated by predict_bugs runs. Use to track if a module is improving or degrading. Read-only. Returns JSON: { dataPoints: [{ date, bugScore, complexity, coupling, churn }] }.

limit number
get_file_health_timeline
annotations: none low

Aggregates get_complexity_trend, get_coupling_trend, and get_git_churn into one per-file time series: complexity, coupling, and a lightweight risk_score per historical snapshot, plus a whole-window churn summary. Answers

file_path string
get_workspace_map
annotations: none low

List all detected monorepo workspaces with file counts, symbol counts, and languages. Returns dependency graph between workspaces showing cross-workspace imports. Use for monorepo structure overview. For impact of changes on other workspaces use get_cross_workspace_impact instead. Read-only. Returns JSON: { workspaces: [{ name, files, symbols, languages }], dependencies }.

get_cross_workspace_impact
annotations: none low

Show which workspaces are affected by changes in a given workspace. Lists all cross-workspace edges, affected symbols, and the public API surface consumed by other workspaces. Use before modifying shared code in a monorepo. Read-only. Returns JSON: { workspace, public_api, consumed_by, depends_on, cross_workspace_edges }.

workspace string
mine_sessions
annotations: none low

Mine Claude Code / Claw Code session logs for architectural decisions, tech choices, bug root causes, and preferences. Strategies:

force boolean
add_decision
annotations: none low

Manually record an architectural decision, tech choice, preference, or convention. Links to code symbols/files and optionally to a specific subproject for code-aware memory. Decisions have temporal validity — they can be invalidated later when they become outdated. Mutates the decision store (creates a new record). For automated extraction from session logs use mine_sessions instead. Returns JSON: { added: { id, title, type } }.

title string
check_architecture
annotations: none low

Check architectural layer rules: detect forbidden imports between layers (e.g. domain importing infrastructure). Supports auto-detected presets (clean-architecture, hexagonal) or custom layers. Use to enforce architectural boundaries. Read-only. Returns JSON: { violations: [{ from, to, rule, file, line }], total, preset }.

name string
remember_decision
annotations: none low

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? }.

title string
query_decisions
annotations: none low

Query the decision knowledge graph. Filter by type, subproject, code symbol, file path, tag, or time — answers

limit number
get_decision
annotations: none low

Fetch a single decision by id, including its full `content`. Companion to query_decisions `index_only: true` (progressive disclosure): list cheaply with index_only, then pull full content on demand for the ids you care about. Read-only. Returns JSON: { decision: { id, title, content, type, tags, ... } } or { error } when not found.

id number
export_decisions
annotations: none low

Export decisions to JSONL or Markdown. Read-only; no schema mutations. Use for audit, sharing with external tooling, or pre-LLM digestion. JSONL emits one decision per line with `tags` parsed from the on-disk JSON column into a real array. Markdown groups by type (and by service when multi-service). Hard-capped at 5000 rows per call as a cost guard. Returns JSON: { format, content, count, scope }.

invalidate_decision
annotations: none low

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 } }.

id number
approve_decision
annotations: none low

Approve a decision currently in the memoir-style review queue (review_status=

id number
reject_decision
annotations: none low

Reject a decision currently in the memoir-style review queue (review_status=

id number
tune_decision_weights
annotations: none low

Decision memory, not retrieval ranking (that is `tune_weights`): re-fit decision confidence weights from accumulated review feedback (approve/reject events). Requires >= min_events reviews and at least one of each label. Mutating: when dry_run=false and the fit succeeds, persists to ~/.trace-mcp/confidence_weights.json and resets the in-memory weight cache so subsequent remember_decision calls use the new weights. Returns: { ok, reason, events_used, weights?, before?, loss_before?, loss_after?, applied }.

get_decision_timeline
annotations: none low

Chronological timeline of decisions for a project, symbol, or file. Shows when decisions were made and invalidated — like git log but for architectural decisions. Read-only. Use to review decision history. Returns JSON: { timeline: [{ id, title, type, created_at, valid_until }], count }.

limit number
get_decision_stats
annotations: none low

Overview of the decision knowledge graph: total decisions, active/invalidated counts, breakdown by type and source. Shows how much institutional knowledge is captured. Read-only. Returns JSON: { total, active, invalidated, by_type, by_source, sessions_mined }.

build_decision_clusters
annotations: none low

Recompute the L2 thematic cluster overlay over the decision store using the configured LLM. Stable cluster ids: a fresh cluster whose title matches an existing one (trigram Jaccard >=0.8) updates the existing row in place. Mutates the cluster store; idempotent. Requires an active AI provider — returns a structured error otherwise. Returns JSON: { created, updated, removed, total_after, clusters, strategy_used }.

consolidate_decisions
annotations: none low

LLM-driven semantic dedup of the decision store. For each decision in scope, finds top-K similar candidates (FTS + title-trigram) and asks the LLM to merge / replace / invalidate where appropriate. Mutating; respects dry_run (default true). Requires an active AI provider. Returns: { evaluated, verdicts: [{subject_id, verdict, affected_ids}], applied_count, dry_run }.

get_decision_clusters
annotations: none low

List decision clusters with optional full-text filter. Each row carries a short noun-phrase title, 1-3 sentence summary, member count, and a preview of member decision titles. Use to navigate the decision store by topic instead of chronologically. Read-only. Returns JSON: { clusters, total }.

service_name string
get_cluster_decisions
annotations: none low

Return the member decisions of a cluster, plus the cluster header. Use after get_decision_clusters to drill into a specific topic. Read-only. Returns JSON: { cluster, decisions }.

id number
regenerate_project_memo
annotations: none low

Synthesise (or refresh) the project memo — a 250-400 word LLM-written orientation digest over the decision store. Skips work when fewer than `memory.memo.regenerateEveryN` decisions have been added since the last memo unless `force=true`. Requires an active AI provider — structured error otherwise.

index_sessions
annotations: none low

Index conversation content from Claude Code / Claw Code sessions for cross-session search. Stores chunked messages in FTS5 — enables

search_sessions
annotations: none low

Search across all past session conversations. Finds what was discussed, decided, or debugged in previous sessions. Full-text search with porter stemming — e.g.,

limit number query string
get_wake_up
annotations: none low

Compact orientation context (~300 tokens) for session start. By default returns a {stable, dynamic} split: stable content (project identity, conventions, architecture) is provider-cacheable when injected into system_prompt; dynamic content (recent activity) goes into the user message to avoid busting the system-prompt cache. Pass cache_split: false for the legacy flat shape. See `scope` to fetch cross-session activity or the project memo instead. Hard-capped by `memory.recall.timeoutMs` (default 5000 ms); on timeout returns a degraded empty payload with `degraded: true` so the agent turn never blocks on slow IO.

get_implementations
annotations: none low

Find all classes that implement or extend a given interface or base class. Use when you know the interface name. For full hierarchy tree (ancestors + descendants) use get_type_hierarchy instead. Read-only. Returns JSON: { implementations: [{ symbol_id, name, kind, file, line }], total }.

get_api_surface
annotations: none low

List all exported symbols (public API) of a file or matching files. Use to understand what a module exposes. For finding unused exports use get_dead_code with mode: exports_only. Read-only. Returns JSON: { files: [{ path, exports: [{ name, kind, signature }] }] }.

get_plugin_registry
annotations: none low

List registered indexer plugins and edge types. Read-only. Returns JSON: { language_plugins, framework_plugins, edge_type_categories, active_frameworks }; include_edge_types adds full catalog.

get_type_hierarchy
annotations: none low

Walk TypeScript class/interface hierarchy: ancestors (what it extends/implements) and descendants (what extends/implements it). Use to understand inheritance trees. For a flat list of implementations only use get_implementations instead. Read-only. Returns JSON: { name, ancestors: [...], descendants: [...] }.

get_import_graph
annotations: none low

Show file-level dependency graph: what a file imports and what imports it (requires reindex for ESM edge resolution). Use to understand module dependencies for a specific file. For project-wide coupling analysis use get_coupling; for visual diagram use get_dependency_diagram. Read-only. Returns JSON: { file, imports: [{ path }], importedBy: [{ path }] }.

get_untested_symbols
annotations: none low

Find symbols lacking test coverage. scope=

self_audit
annotations: none low

Dead code & coverage audit: dead exports, untested public symbols, heritage debt. Use as a one-shot health check combining dead exports + untested symbols + heritage debt. For individual checks use get_dead_code or get_untested_symbols separately. Read-only. Returns JSON: { deadExports, untestedSymbols, heritageDebt, summary }.

generate_insights_report
annotations: none low

Single-call narrative health snapshot: god files (PageRank), architectural bridges (edge bottlenecks), risk hotspots (complexity × churn), edge resolution-tier breakdown, and gap counts (dead exports, untested, cycles). Aggregates already-computed metrics into ~2K tokens of Markdown plus a structured payload. Use at the start of a session to orient yourself instead of chaining get_pagerank + get_risk_hotspots + get_edge_bottlenecks + self_audit. Read-only. Returns JSON: { generated_at, totals, resolution_tiers, god_files, bridges, hotspots, gaps, markdown }.

top_n number
get_coupling
annotations: none low

Coupling analysis: afferent (Ca), efferent (Ce), instability index per file. Shows which modules are stable vs unstable. Use to identify fragile or overly-depended-on modules. For coupling changes over time use get_coupling_trend instead. Read-only. Returns JSON: [{ file, ca, ce, instability, assessment }]. Set `output_format:

limit number
get_circular_imports
annotations: none low

Find circular dependency chains in the import graph (Kosaraju SCC algorithm). Considers only import-typed edges (esm_imports / imports / py_imports / py_reexports); call, reference, member_of, and test_covers edges are NOT walked. Test files (paths matching tests/**, **/*.test.*, **/*.spec.*, **/__tests__/**) are excluded by default to suppress spurious test↔source cycles — pass include_tests: true to opt in. Use to detect and break dependency cycles. Read-only. Returns JSON: { total_cycles, cycles: [{ files, length }] }.

get_pagerank
annotations: none low

File importance ranking via PageRank on the import graph. Shows most central/important files. Use to identify architecturally critical files. For combined health metrics use get_project_health instead. By default markdown files (.md/.mdx/.markdown/.qmd) are excluded — their cross-link patterns dominate the graph and bury real code. Pass `include_markdown: true` to keep them. Read-only. Returns JSON: [{ file, score }]. Set `output_format:

limit number
get_edge_bottlenecks
annotations: none low

Find architectural bottleneck edges in the import graph: edges on many shortest paths (betweenness), edges whose removal would disconnect the graph (bridges), and single-point-of-failure nodes (articulation points). bottleneckScore = betweenness × (1 + coChangeWeight). Use to prioritize decoupling work. For general importance use get_pagerank instead. Read-only. Returns JSON: { edges: [{ sourceFile, targetFile, betweenness, coChangeWeight, bottleneckScore, isBridge }], articulationPoints: [...], stats }.

get_refactor_candidates
annotations: none low

Find functions with high complexity called from many files — candidates for extraction to shared modules. Use during architecture review to identify hotspots worth refactoring. Read-only. Returns JSON: [{ symbol_id, name, file, cyclomatic, callerCount }]. Set `output_format:

limit number
get_project_health
annotations: none low

Structural health: coupling instability, dependency cycles, PageRank rankings, refactor candidates. Use for architecture review as a single aggregated report. For individual metrics use get_coupling, get_circular_imports, or get_pagerank separately. Read-only. Returns JSON: { coupling, cycles, pagerank, refactorCandidates, hotspots }.

${projectHash(projectRoot)}-reindex
annotations: none low

get_symbol_owners
annotations: none low

Git blame-based symbol ownership: who wrote which lines of a specific symbol. Requires git. Use for fine-grained ownership of a specific function/class. For file-level ownership use get_code_owners instead. Read-only. Returns JSON: { symbol_id, owners: [{ author, lines, percentage }] }.

symbol_id string
get_complexity_trend
annotations: none low

File complexity over git history: cyclomatic complexity at past commits. Shows if a file is getting more or less complex. Requires git. Use to track whether a file is improving or degrading. For current snapshot use get_complexity_report; for symbol-level trends use get_symbol_complexity_trend. Read-only. Returns JSON: { file, snapshots: [{ commit, date, complexity }] }.

file_path string
get_coupling_trend
annotations: none low

File coupling over git history: Ca/Ce/instability at past commits. Shows if a module is stabilizing or destabilizing. Requires git. Use to track module stability over time. For current coupling snapshot use get_coupling instead. Read-only. Returns JSON: { file, snapshots: [{ commit, date, ca, ce, instability }] }.

file_path string since_days number
get_symbol_complexity_trend
annotations: none low

Single symbol complexity over git history: cyclomatic, nesting, params, lines at past commits. Requires git. Use to track a specific function

check_duplication
annotations: none low

Check if a function/class name already exists before creating it. Pass `name` when planning new code, or `symbol_id` to check an existing symbol against others (excluded from its own results). `exclude_symbol_id` suppresses known matches. Score ≥0.7 means high likelihood of duplication — review before proceeding. Read-only. Returns JSON: { duplicates: [{ symbol_id, name, file, score }], hasDuplication }.

pin
annotations: none low

Boost (or demote) a symbol and/or file in PageRank-driven ranking by setting a multiplicative weight. Unifies pin_symbol/pin_file — pass symbol_id and/or file_path (at least one required; pass both to pin them together with the same weight). Capped at 50 active pins per project. Returns JSON: { ok, pins, errors? }.

symbol_id string
unpin
annotations: none low

Remove a ranking pin by target. Pass either symbol_id (for a pinned symbol) or file_path (for a pinned file). At least one is required. Returns JSON: { ok, deleted }.

file_path string symbol_id string
list_pins
annotations: none low

List all active ranking pins with weight, scope, target, expiry, and creator. Use to inspect what is currently boosted/demoted in PageRank-driven ranking. Read-only. Returns JSON: { pins: [{ scope, target_id, weight, expires_at, created_by, created_at }], total, cap }.

get_git_churn
annotations: none low

Per-file git churn: commits, unique authors, frequency, volatility assessment. Requires git. Use to identify frequently-changed files. For combined churn+complexity hotspots use get_risk_hotspots instead. Read-only. Returns JSON: { results: [{ file, commits, authors, frequency, volatility }], total }. Set `output_format:

limit number
get_risk_hotspots
annotations: none low

Code hotspots: files with both high complexity AND high git churn (Adam Tornhill methodology). Score = complexity × log(1 + commits). Heuristic triage, not validated (calibration notes in _methodology). Requires git. For per-file bug-risk triage use predict_bugs instead. Read-only. Returns JSON: { hotspots: [{ file, score, max_cyclomatic, commits, assessment, confidence_level }], total }. Supports `output_format:

limit number
get_dead_code
annotations: none low

Dead code detection. Modes:

scan_security
annotations: none low

Scan project files for OWASP Top-10 security vulnerabilities using pattern matching. Detects SQL injection (CWE-89), XSS (CWE-79), command injection (CWE-78), path traversal (CWE-22), hardcoded secrets (CWE-798), insecure crypto (CWE-327), open redirects (CWE-601), and SSRF (CWE-918). Skips test files. Weakly-grounded (

detect_antipatterns
annotations: none low

Detect performance & design antipatterns: N+1 queries, missing eager loading, unbounded queries, event listener leaks, circular ORM association cycles, missing FK indexes, memory leaks, god classes (>=25 methods or >=500 LOC), long methods (>=60 LOC), long parameter lists (>=6), deep nesting (>=5). ORM-scoped signals need an active ORM plugin; size/complexity detectors run on every symbol. For import cycles use get_circular_imports; for TODOs/debug artifacts use scan_code_smells; for security use scan_security. Read-only. Returns JSON: { findings: [{ category, severity, file, line, message, suggestion }], total }.

scan_code_smells
annotations: none low

Find deferred work and shortcuts: TODO/FIXME/HACK/XXX comments, empty functions & stubs, hardcoded values (IPs, URLs, credentials, magic numbers), and per-language debug artifacts (console.log, debugger, var_dump, pdb.set_trace, etc). Combines comment scanning, symbol body analysis, and false-positive filtering — surfaces more than grep alone. Use for code quality audits / pre-release checks. For performance antipatterns use detect_antipatterns; for security use scan_security. Read-only. Returns JSON: { findings: [{ category, priority, file, line, message }], total, summary }.

include_tests boolean
detect_ast_clones
annotations: none low

Find Type-2 AST clones: functions/methods with identical structure after normalizing identifiers and literals (tree-sitter parse + AST subtree hash). Unlike check_duplication (name/signature similarity), this finds structurally identical bodies — prime DRY-refactor candidates. Supports TypeScript, JavaScript, Python, Ruby, Go, Java, Rust, PHP, C, C++, C#, Swift, Kotlin, Scala, Elixir. Read-only. Returns JSON: { groups: [{ hash, size, loc, symbols: [{ symbol_id, name, file, line_start, line_end }] }], total_groups, total_duplicated_symbols, files_scanned, symbols_scanned }.

taint_analysis
annotations: none low

Track flow of untrusted data from sources (HTTP params, env vars, file reads) to dangerous sinks (SQL queries, exec, innerHTML, redirects). Framework-aware (Express, Laravel, Django, FastAPI, etc). Reports unsanitized flows with CWE IDs and fixes; prunes flows that provably terminate at a non-string value. Heuristic, regex-based — not a sound dataflow engine, treat as triage. For pattern-based OWASP scanning use scan_security instead. Read-only. Returns JSON: { flows: [{ source, sink, path, sanitized, cwe, suggestion }], total }.

generate_sbom
annotations: none low

Generate a Software Bill of Materials (SBOM) from package manifests and lockfiles. Supports npm, Composer, pip, Go, Cargo, Bundler, Maven. Outputs CycloneDX, SPDX, or plain JSON. Includes license compliance warnings for copyleft licenses. Use for supply chain audits or compliance reports. Returns JSON/CycloneDX/SPDX: { components: [{ name, version, license, type }], warnings }.

include_dev boolean
get_artifacts
annotations: none low

Surface non-code knowledge from the index: DB schemas (migrations, ORM models), API specs (routes, OpenAPI endpoints), infrastructure (docker-compose services, K8s resources), CI pipelines (jobs, stages), and config (env vars). All data from the existing index — no extra I/O. Use to discover infrastructure and config artifacts without reading files. Read-only. Returns JSON: { artifacts: [{ category, kind, name, file }], total }.

limit number
plan_batch_change
annotations: none low

Analyze the impact of updating a package/dependency. Shows all affected files, import references, and generates a PR template with checklist. Use before upgrading a dependency to understand blast radius. Read-only (analysis only, does not modify files). Returns JSON: { package, affectedFiles, importReferences, prTemplate, checklist }.

get_complexity_report
annotations: none low

Get complexity metrics (cyclomatic, max nesting, param count) for symbols in a file or across the project. Use to identify complex code before refactoring. For historical trends use get_complexity_trend instead. Read-only. Returns JSON: { symbols: [{ symbol_id, name, kind, file, line, cyclomatic, max_nesting, param_count }], total }. Set `output_format:

limit number
check_rename
annotations: none low

Pre-rename collision detection: checks the symbol

symbol_id string target_name string
apply_rename
annotations: none low

Rename a symbol across all usages (definition + all importing files). Runs collision detection first and aborts on conflicts. Dry-run by default — preview the plan, then re-call with dry_run: false to apply. Returns the list of edits applied. Modifies source files when dry_run is false. Use check_rename first to verify safety; use plan_refactoring with type=

new_name string symbol_id string
remove_dead_code
annotations: none low

Safely remove a dead symbol from its file. Verifies the symbol is actually dead (multi-signal detection or zero incoming edges) before removal. Warns about orphaned imports in other files. Dry-run by default — preview the plan, then re-call with dry_run: false to apply. Destructive when applied — deletes code from source files. Use get_dead_code first to identify candidates. Returns JSON: { success, removed: { symbol_id, file }, orphanedImports }.

symbol_id string
extract_function
annotations: none low

Extract a line range out of an enclosing function into a new named helper (AST-aware, TypeScript/JavaScript). Computes the parameter list via free-variable analysis and a return value from bindings used after the slice. The helper is inserted after the enclosing function; the slice becomes a call. Dry-run by default — preview, then re-call with dry_run=false to apply. Returns JSON: { success, edits, extracted_params, return_value, confidence, files_modified }.

end_line number file_path string start_line number function_name string
apply_codemod
annotations: none low

Structural (AST-aware) or regex find-and-replace across files. Default engine

apply_move
annotations: none low

Move a symbol to a different file or rename/move a file, updating all import paths across the codebase. Dry-run by default (safe preview). Modifies source files. Use plan_refactoring with type=

change_signature
annotations: none low

Change a function/method signature (add/remove/rename/reorder parameters) and update all call sites. Dry-run by default (safe preview). Modifies source files. Use plan_refactoring with type=

symbol_id string
plan_refactoring
annotations: none low

Preview any refactoring (rename, move, extract, signature) without applying. Returns all edits as {old_text, new_text} pairs. Read-only (does not modify files). Use to review the blast radius before calling apply_rename, apply_move, change_signature, or extract_function. Returns JSON: { success, type, edits: [{ file, old_text, new_text }], filesAffected }.

end_line number start_line number
search_bundles
annotations: none low

Search pre-indexed bundles for symbols from popular libraries (React, Express, etc.). Returns symbol definitions from dependency bundles — useful for go-to-definition into node_modules/vendor. Install bundles via CLI: `trace-mcp bundles export`. For project source code search use search instead. Read-only. Returns JSON: { results: [{ name, kind, signature, bundle }], bundles_searched }.

limit number query string
list_bundles
annotations: none low

List installed pre-indexed bundles for dependency libraries. Shows package name, version, symbol/edge counts, and size. Read-only. Returns JSON: { bundles: [{ name, version, symbols, edges, size }], total }.

benchmark_project
annotations: none low

Synthetic token efficiency benchmark: compare raw file reads vs trace-mcp compact responses across symbol lookup, file exploration, search, and impact analysis scenarios. Read-only, no side effects. Use to quantify token savings. Returns JSON: { scenarios: [{ name, raw_tokens, compact_tokens, savings_pct }], summary }.

seed number
get_startup_context_audit
annotations: none low

What every session pays before your first message, what it costs, and what went unused: source decomposition, cache-rebuild prices, and removals proven unused — never merely big. `textCompression` finds text the block says twice, as a delete-only diff. Read-only, local. Returns JSON: { startupTokens, sources, cost, cacheBreakers, mcpServers, instructionFiles, recommendations, textCompression, observationWindow }.

apply_startup_recommendations
annotations: none low

Apply or preview a get_startup_context_audit recommendation: disable an unused MCP server, move an unused skill aside, or delete duplicated instruction lines. dry_run defaults to true; every write is backed up first. Returns JSON: { dryRun, backupId, outcomes }.

target string dry_run boolean
rollback_startup_recommendations
annotations: none low

Undo one apply_startup_recommendations(dry_run:false) call byte-for-byte: restores files and moved skills. Defaults to the latest backup. Returns JSON: { backupId, restored, errors }.

check_embedding_drift
annotations: none low

Pin and re-check a 16-string canary against the active embedding provider. Catches silent provider model swaps (OpenAI/Voyage/etc.) that quietly degrade hybrid retrieval. First call (or with capture=true) saves the baseline; subsequent calls report max cosine distance vs baseline. Read-only or write-only (capture). Returns JSON: { status, message, max_distance?, mean_distance?, per_string? }.

tune_weights
annotations: none low

Retrieval fusion ranking for `search`, not decision memory (that is `tune_decision_weights`): read the persistent ranking ledger and learn per-repo signal-fusion weights, written to ~/.trace-mcp/tuning.jsonc. Requires telemetry.enabled in config. Read-only by default (dry_run=true unless explicitly disabled). Returns JSON: { applied, reason, weights?, before?, events_used? }.

analyze_perf
annotations: none low

Per-tool latency telemetry: p50/p95/max, count, error_rate. Default reads the current session ring; `window=1h|24h|7d|all` reads from ~/.trace-mcp/telemetry.db (requires telemetry.enabled in config). Sorted by p95 descending so the slowest tools surface first. Read-only. Returns JSON: { tools: [{ tool, p50, p95, max, count, errors, error_rate }], total_tools, source }. Set `output_format:

get_session_journal
annotations: none low

Session history: all tool calls made, files read, zero-result searches, and duplicate queries. Use to avoid repeating work. For a compact snapshot use get_session_snapshot instead. Read-only. Returns JSON: { calls, filesRead, zeroResults, duplicates }.

get_session_snapshot
annotations: none low

Compact session snapshot (~200 tokens) for context recovery after compaction. Returns focus files (by read count), edited files, key searches, and dead ends. Also used by the PreCompact hook to preserve session orientation automatically. Read-only. For full journal use get_session_journal; for cross-session context use get_wake_up with scope:

get_component_tree
annotations: none low

Build a component render tree starting from a given .vue file. Use to visualize parent-child component hierarchy. Read-only. Returns JSON: { root, children: [{ component, props, slots, depth }], totalComponents }.

depth number component_path string
get_request_flow
annotations: none low

Trace request flow for a URL+method: route → middleware → controller → service (Laravel/Express/NestJS/Fastify/Hono/tRPC/FastAPI/Flask/DRF). Use to understand how a request is handled end-to-end. For middleware-only analysis use get_middleware_chain instead. Read-only. Returns JSON: { route, steps: [{ type, symbol_id, name, file }] }.

url string
get_middleware_chain
annotations: none low

Trace middleware chain for a route URL (Express/NestJS/FastAPI/Flask). Use when you only need the middleware stack, not the full request flow. For full route→controller→service flow use get_request_flow instead. Read-only. Returns JSON: { url, middlewares: [{ name, file, order }] }.

url string
get_module_graph
annotations: none low

Build NestJS module dependency graph (module -> imports -> controllers -> providers -> exports). Use to understand NestJS module structure and DI wiring. For provider-level DI tree use get_di_tree instead. Read-only. Returns JSON: { module, imports, controllers, providers, exports, edges }.

module_name string
get_di_tree
annotations: none low

Trace NestJS dependency injection tree (what a service injects + who injects it). Use to understand DI wiring for a specific provider. For module-level graph use get_module_graph instead. Read-only. Returns JSON: { service, injects: [{ name, kind }], injected_by: [{ name, kind }] }.

service_name string
get_navigation_graph
annotations: none low

Build React Native navigation tree from screens, navigators, and deep links. Use to understand app navigation structure. For details on a specific screen use get_screen_context instead. Read-only. Returns JSON: { navigators, screens, deepLinks, edges }.

get_screen_context
annotations: none low

Get full context for a React Native screen: navigator, navigation edges, deep link, platform variants, native modules. Use to understand a specific screen before modifying it. For the full navigation tree use get_navigation_graph instead. Read-only. Returns JSON: { screen, navigator, deepLink, platformVariants, nativeModules, navigationEdges }.

screen_name string
get_model_context
annotations: none low

Get full model context: relationships, schema, and metadata (Eloquent/Mongoose/Sequelize/SQLAlchemy/Prisma/TypeORM/Drizzle). Use to understand a specific ORM model. For raw table schema without ORM context use get_schema instead. Read-only. Returns JSON: { model, table, relationships: [{ type, related, foreignKey }], fields, metadata }.

model_name string
get_schema
annotations: none low

Get database schema reconstructed from migrations or ORM model definitions. Use to understand table structure. For ORM-level context with relationships use get_model_context instead. Read-only. Returns JSON: { tables: [{ name, columns: [{ name, type, nullable, default }], indexes }] }.

get_event_graph
annotations: none low

Get event/signal/task dispatch graph (Laravel events, Django signals, NestJS events, Celery tasks, Socket.io events). Use to understand event-driven architecture and trace event producers/consumers. Read-only. Returns JSON: { events: [{ name, dispatchers, listeners, file }] }.

find_usages
annotations: none low

Find all references to a symbol or file (imports, calls, renders, dispatches). Use instead of Grep for symbol usages — semantic, not text matches. For raw text use search_text; for a bidirectional call graph use get_call_graph. Weakly-grounded `text_matched` edges into a name-colliding target are dropped by default (phantom god-node filter); `include_ambiguous_text_matched: true` keeps them. Read-only. Returns JSON: { references: [{ edge_type, resolution_tier, file, symbol }], total, truncated?, ambiguous_filtered? } — page caps at 50, `total` counts all.

get_call_graph
annotations: none low

Build a bidirectional call graph centered on a symbol (who calls it + what it calls). Each branch keeps its direction: depth 2 = callers of callers, callees of callees. 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: [...] } }.

get_tests_for
annotations: none low

Find test files/functions covering a given symbol or file. Understands test-to-source mapping, not just filename conventions. With symbol_id/fqn, narrows to tests that actually exercise it (direct_invocation, import_and_call, or text_match confidence tiers; default min_confidence is import_and_call). For project-wide coverage gaps use get_untested_symbols instead. Read-only. Returns JSON: { tests: [{ test_file, symbol_id, test_name, line, edge_type, confidence }], total, symbol_filtered?, fell_back_to_file_level? }.

get_livewire_context
annotations: none low

Get full context for a Livewire component: properties, actions, events, view, child components. Use to understand a specific Livewire component before modifying it. Read-only. Returns JSON: { component, properties, actions, events, view, children }.

get_nova_resource
annotations: none low

Get full context for a Laravel Nova resource: model, fields, actions, filters, lenses, metrics. Use to understand a Nova admin resource before modifying it. Read-only. Returns JSON: { resource, model, fields, actions, filters, lenses, metrics }.

get_state_stores
annotations: none low

List all Zustand stores and Redux Toolkit slices with their state fields, actions/reducers, and dispatch sites. Use to understand state management architecture. Read-only. Returns JSON: { stores: [{ type, name, handler, metadata }], dispatches, totalStores, totalDispatches }.

build_corpus
annotations: none low

Pack a slice of project context into a persistent corpus on disk so future query_corpus calls can prime an LLM with the same snapshot without re-running the pack pipeline. Mutates the corpora store; returns JSON with the saved manifest. Pair with query_corpus for

list_corpora
annotations: none low

List every corpus saved on disk with its manifest (scope, project_root, sizes, timestamps). Read-only. Use to discover what corpora are available to query.

query_corpus
annotations: none low

Answer a natural-language question against a saved corpus. Loads the corpus body, primes the configured AI provider with it as system context, and returns the response. When mode=

question string
delete_corpus
annotations: none low

Remove a saved corpus (manifest + packed body). Returns JSON: { deleted: bool, name }.

list_projects
annotations: none low

List projects registered with trace-mcp (~/.trace/registry.json) — the roots call_project_tool accepts. Use to query a project other than the one this session is attached to. Subprojects nested inside those roots are not valid targets, so they are opt-in via include_subprojects. Read-only. Returns JSON: { projects: [{ root, name, type, lastIndexed }], subprojects?: [{ name, repo_root, project_root }], total }.

call_project_tool
annotations: none low

Relay a trace-mcp tool call to a DIFFERENT registered project than this session

trace_state_init
annotations: none low

Initialize structured execution state for a task (arXiv:2608.26263). Saves state to SQLite and returns compact initial state.

goal string task_id string
trace_state_patch
annotations: none low

Apply an RFC 7396 JSON Merge Patch to update state atomically. Validates schema and increments version. Returns compact status.

task_id string
trace_state_get
annotations: none low

Retrieve current execution state for a task in compact markdown (~150 tokens) or full JSON.

task_id string
trace_state_checkpoint
annotations: none low

Save a named state checkpoint snapshot for safe rollback if a future exploration path fails.

label string task_id string
trace_state_rollback
annotations: none low

Rollback task execution state to a previously saved checkpoint snapshot by label or ID.

task_id string checkpoint string
trace_state_add_dead_end
annotations: none low

Shortcut to record a failed approach or dead end into task state without a full patch.

reason string task_id string
trace_state_list
annotations: none low

List recent agent execution task states and their status in storage.

limit number
get_co_changes
annotations: none low

Find files that frequently change together in git history (temporal coupling). Requires git. Use to discover hidden dependencies between files. For cross-module co-change anomalies use detect_drift instead. Read-only. Returns JSON: { file, coChanges: [{ file, confidence, count }] }.

file string limit number min_count number
refresh_co_changes
annotations: none low

Rebuild co-change index from git history. Mutates the co-change index; idempotent. Use after significant git history changes. Returns JSON: { status, pairs_stored, window_days }.

get_changed_symbols
annotations: none low

Map a git diff to affected symbols (functions, classes, methods), for PR review. If

compare_branches
annotations: none low

Compare two branches at symbol level: what was added, modified, removed. Resolves merge-base automatically, groups by category/file/risk, includes blast radius and risk assessment. Requires git. For a quick list of changed symbols without risk analysis use get_changed_symbols instead. Read-only. Returns JSON: { branch, base, mergeBase, changes: [{ symbol_id, category, risk }], summary }.

branch string
detect_communities
annotations: none low

Run Leiden community detection on the file dependency graph. Identifies tightly-coupled file clusters (modules). Mutates the community index (stores results); idempotent. Deterministic — same `seed` produces identical assignments across runs. Use before get_communities or get_community. Returns JSON: { communities: [{ id, files, size }], modularity, seed }.

get_communities
annotations: none low

Get previously detected communities (file clusters). Run detect_communities first. Read-only. Returns JSON: { communities: [{ id, files, size }], total }.

get_community
annotations: none low

Get details for a specific community: files, inter-community dependencies. Read-only. Use after detect_communities to drill into a specific cluster. Returns JSON: { id, files, interCommunityDeps }.

id number
get_surprises
annotations: none low

Rank cross-module file edges by how unexpected they look (deep folder distance + popular target + few edges = high surprise). Surfaces hidden coupling that shotgun-changes through unrelated modules. Requires detect_communities to have been run first. Read-only. Returns JSON: { edges: [{ sourceFile, targetFile, surpriseScore, ... }], totalCommunities }.

audit_config
annotations: none low

Scan AI agent config files (CLAUDE.md, AGENTS.md, .cursorrules, etc.) for stale references, dead paths, token bloat, and (when include_drift is set) drift between agent rules and the live MCP tool / skill / command surface. Read-only. Returns JSON: { issues: [{ file, line, category, issue, severity, fix? }], total }.

fix_suggestions boolean
check_claudemd_drift
annotations: none low

Detect drift between AI agent config files (CLAUDE.md, AGENTS.md, .cursorrules) and the live tool/skill/command surface: dead path references, references to non-existent MCP tools, references to missing skills/commands, oversized sections. Convenience alias for `audit_config { drift_only: true }`. Read-only. Returns JSON: { issues: [{ file, line, category, issue, severity, fix? }], files_scanned, total_tokens, summary }.

fix_suggestions boolean
get_control_flow
annotations: none low

Build a Control Flow Graph (CFG) for a function/method: if/else branches, loops, try/catch, returns, throws. Shows logical paths through the code. Outputs Mermaid diagram, ASCII, or JSON. Use to understand branching logic before modifying complex functions. For call-level graph (who calls whom) use get_call_graph instead. Read-only. Returns Mermaid/ASCII/JSON: { nodes, edges, entryPoint, exitPoints }.

simplify boolean
get_package_deps
annotations: none low

Cross-repo package dependency analysis: find which registered projects depend on a package, or what packages a project publishes. Scans package.json/composer.json/pyproject.toml across all repos in the registry. Use for cross-project dependency mapping. For impact of upgrading a specific package use plan_batch_change instead. Read-only. Returns JSON: { dependents, dependencies, package }.

verify_docs
annotations: none low

Verify a markdown document against the code graph — the reverse of generate_docs, for catching doc drift after a rename. forward: backticked paths and identifiers that no longer resolve, each with its heading path. reverse: public symbols in a scope the document never mentions. Read-only. Returns JSON: { doc, forward: { checked, resolved, misses }, reverse: { unmentioned } }.

path string compact boolean
generate_docs
annotations: none low

Generate project documentation from the code graph — architecture, API surface, data models, components, dependencies. For checking an existing document instead, use verify_docs. Returns JSON: { format, sections, outputPath }.

${projectHash(projectRoot)}-repair
annotations: none low

pack_context
annotations: none low

Pack project context into a single document for external LLMs. Intelligent selection by graph importance, fits within token budget. Better than Repomix for focused context. Strategies: most_relevant (default — feature/PageRank ranked), core_first (PageRank always wins, surfaces architecturally central code), compact (signatures only — drops source bodies, lets outlines cover much more of the repo per token). Read-only. Use when sharing project context with external tools. Returns XML/Markdown/JSON with selected code within budget.

get_suggested_questions
annotations: none low

Auto-generated, prioritized review questions derived from the analyses we already cache (untested framework entry points, circular imports, ast-clone clusters, dead-export drift, untested-but-exported symbols). Use during PR review to surface

check_quality_gates
annotations: none low

Run configurable quality gate checks (complexity, coupling, circular imports, dead exports, tech debt, security, antipatterns, code smells). Designed for CI / pre-commit verification. Read-only. With no gates configured, returns `NO_GATES_CONFIGURED` with a `_warnings` advisory — never a misleading `PASS`. Pass `use_default_gates: true` for a conservative built-in ruleset. Returns JSON: { gates, summary: { result:

export_security_context
annotations: none low

Export security context for MCP server analysis. Generates enrichment JSON for skill-scan: tool registrations with annotations, transitive call graphs classified by security category (file_read, file_write, network_outbound, env_read, shell_exec, crypto, serialization), sensitive data flows, and per-file capability maps. Use to analyze MCP server security before installation. Read-only. Returns JSON: { tool_registrations, sensitive_flows, capability_map, warnings }.

check_edit_safe
annotations: none low

Edit-safety preflight: before modifying a symbol or file, get one verdict for

get_diagnostics
annotations: none low

Execute type-checker (tsc, mypy, pyright) and map errors to enclosing AST symbols. Read-only.

max_files number timeout_ms number max_per_file number
get_index_health
annotations: none low

Get index status, statistics, health, 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, embedding }.

reindex
annotations: none low

Trigger (re)indexing of the project or a subdirectory. Mutates the local index (SQLite). Use after major file changes; for single-file updates prefer register_edit instead. The optional `postprocess` flag controls how much work runs after raw symbol extraction:

force boolean
embed_repo
annotations: none low

Precompute and cache symbol embeddings for semantic / hybrid search. Also computed lazily on first semantic query — call this once after a fresh index to avoid that latency spike. Requires an AI provider (ollama/openai) enabled in config. force=true recomputes all embeddings. Mutates the vector store; idempotent. Returns JSON: { status, indexed_this_run, total_embedded, coverage_pct, duration_ms }. Failed batches return status

verify_index
annotations: none low

Read-only structural check of the local SQLite index: SQLite integrity_check, foreign-key violations, required-table presence, FTS5 integrity-check, embedding dimension consistency, and orphan embedding detection. Returns a check-by-check report with status (ok/warn/error) and a suggested repair mode for any non-ok finding. Never writes. Use as a preflight before reindex/embed_repo or when search is misbehaving. Returns JSON: { ok, status, checks: [{ name, status, detail, count?, suggested_repair? }] }.

repair_index
annotations: none low

Apply a targeted repair to the local SQLite index. Modes: drop-orphans (delete embedding rows whose symbol_id no longer exists), drop-vec (drop the entire vector store — search falls back to BM25; embed_repo rebuilds), rebuild-fts (drop and reload symbols_fts from the symbols table). Each mode runs in a transaction so a partial failure leaves the DB unchanged. DESTRUCTIVE — verify_index first to find out which mode is needed. Returns JSON: { mode, ok, detail, affected }.

register_edit
annotations: none low

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 flags duplicate symbols — if `_duplication_warnings` appears, you may be recreating existing logic; review them. Each one is reported once per file, not on every edit; `check_duplication` re-asks. Mutates the index; idempotent. Returns JSON: { status, file, totalFiles, indexed, _duplication_warnings? }.

file_path string
get_minimal_context
annotations: none low

Single-call orientation context (~150 tokens). Returns project shape, top 3 risk hotspots, top 3 PageRank-central files, top 3 communities, and 3-5 task-routed next-tool suggestions. Use at session start instead of chaining get_project_map + get_pagerank + get_risk_hotspots + get_communities. The optional `task` argument biases the suggestions toward review / refactor / debug / add_feature / understand. Read-only. Returns JSON: { project, health, communities, next_steps }.

get_project_map
annotations: none low

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 }.

get_env_vars
annotations: none low

List environment variable keys from .env files with inferred value types/formats. Never exposes actual values — only keys, types, and formats (url/email/ip/path/uuid/json/base64/csv/dsn/etc). Safe for secrets. Pass `redacted: true` with `file` for a line-by-line redacted view of one file (keys + type hints, no values, preserves order/comments). Returns JSON grouped by file: { [file]: [{ key, type, format, comment }] }.

explain_symbol
annotations: none low

Explain a symbol in detail using AI — purpose, behavior, relationships, usage patterns

fqn string symbol_id string
suggest_tests
annotations: none low

Suggest test cases for a symbol using AI

fqn string symbol_id string
review_change
annotations: none low

AI-powered review of a file change — identify issues, risks, and suggestions

diff string file_path string
find_similar
annotations: none low

Find semantically similar symbols using vector search + optional AI reranking

limit number query string symbol_id string
explain_architecture
annotations: none low

AI-powered architecture analysis — layers, patterns, and data flow

a
annotations: none low

get_task_context
annotations: none low

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.

task string include_tests boolean
suggest_queries
annotations: none low

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 }.

get_symbol
annotations: none low

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 }.

get_change_impact
annotations: none low

Full change impact report: risk score + mitigations, breaking change detection, enriched dependents (complexity, coverage, exports), module groups, affected tests, co-change hidden couplings. Pass symbol_ids to scope analysis to changed symbols only. Use before modifying code to understand blast radius. For a quick risk score alone use assess_change_risk; for who-calls-what use get_call_graph. Read-only. Returns JSON: { risk, dependents, affectedTests, breakingChanges, totalAffected }.

depth number
get_related_symbols
annotations: none low

Find symbols related via co-location (same file), shared importers, and name similarity. Use when exploring a symbol to discover sibling code. For call-graph relationships use get_call_graph instead; for all usages use find_usages. Read-only. Returns JSON: { related: [{ symbol_id, name, kind, file, relation_type, score }] }.

symbol_id string max_results number
get_context_bundle
annotations: none low

Get a symbol

get_feature_context
annotations: none low

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:

Permissions 5

network medium
Server uses network capabilities via: fetch(), http, https
filesystem low
Server uses filesystem capabilities via: fs, fs sync ops, fs.promises, fs/promises, glob, open(), os, path
shell high
Server uses shell capabilities via: child_process, execSync(), spawn(), spawnSync()
database medium
Server uses database capabilities via: better-sqlite3, redis
env_vars low
Server uses env_vars capabilities via: process.env

Scan Findings 568

low
Tool 'test-client' has no annotations annotation_checker · 100%
low
Tool 'name' has no annotations annotation_checker · 100%
low
Tool 'search' has no annotations annotation_checker · 100%
low
Tool 'get_outline' has no annotations annotation_checker · 100%
low
Tool 'blocked_tool' has no annotations annotation_checker · 100%
low
Tool 'blocked' has no annotations annotation_checker · 100%
low
Tool 'get_user' has no annotations annotation_checker · 100%
low
Tool 'create_item' has no annotations annotation_checker · 100%
low
Tool 'echo' has no annotations annotation_checker · 100%
low
Tool 'mcp-sdk' has no annotations annotation_checker · 100%
low
Tool 'get_service_map' has no annotations annotation_checker · 100%
low
Tool 'get_cross_service_impact' has no annotations annotation_checker · 100%
low
Tool 'get_api_contract' has no annotations annotation_checker · 100%
low
Tool 'get_service_deps' has no annotations annotation_checker · 100%
low
Tool 'get_contract_drift' has no annotations annotation_checker · 100%
low
Tool 'get_federation_impact' has no annotations annotation_checker · 100%
low
Tool 'get_subproject_graph' has no annotations annotation_checker · 100%
low
Tool 'get_subproject_impact' has no annotations annotation_checker · 100%
low
Tool 'subproject_add_repo' has no annotations annotation_checker · 100%
low
Tool 'subproject_sync' has no annotations annotation_checker · 100%
low
Tool 'detect_topic_tunnels' has no annotations annotation_checker · 100%
low
Tool 'get_subproject_clients' has no annotations annotation_checker · 100%
low
Tool 'get_contract_versions' has no annotations annotation_checker · 100%
low
Tool 'discover_claude_sessions' has no annotations annotation_checker · 100%
low
Tool 'visualize_subproject_topology' has no annotations annotation_checker · 100%
low
Tool 'get_runtime_profile' has no annotations annotation_checker · 100%
low
Tool 'get_runtime_call_graph' has no annotations annotation_checker · 100%
low
Tool 'get_endpoint_analytics' has no annotations annotation_checker · 100%
low
Tool 'get_runtime_deps' has no annotations annotation_checker · 100%
low
Tool 'discover_hermes_sessions' has no annotations annotation_checker · 100%
low
Tool 'query_by_intent' has no annotations annotation_checker · 100%
low
Tool 'get_domain_map' has no annotations annotation_checker · 100%
low
Tool 'get_domain_context' has no annotations annotation_checker · 100%
low
Tool 'get_cross_domain_deps' has no annotations annotation_checker · 100%
low
Tool 'graph_query' has no annotations annotation_checker · 100%
low
Tool 'traverse_graph' has no annotations annotation_checker · 100%
low
Tool 'get_dataflow' has no annotations annotation_checker · 100%
low
Tool 'snapshot_graph' has no annotations annotation_checker · 100%
low
Tool 'list_graph_snapshots' has no annotations annotation_checker · 100%
low
Tool 'diff_graph_snapshots' has no annotations annotation_checker · 100%
low
Tool 'get_graph_timeline' has no annotations annotation_checker · 100%
low
Tool 'export_graph' has no annotations annotation_checker · 100%
low
Tool 'visualize_graph' has no annotations annotation_checker · 100%
low
Tool 'get_dependency_diagram' has no annotations annotation_checker · 100%
low
Tool 'search_text' has no annotations annotation_checker · 100%
low
Tool 'predict_bugs' has no annotations annotation_checker · 100%
low
Tool 'detect_drift' has no annotations annotation_checker · 100%
low
Tool 'get_tech_debt' has no annotations annotation_checker · 100%
low
Tool 'assess_change_risk' has no annotations annotation_checker · 100%
low
Tool 'get_health_trends' has no annotations annotation_checker · 100%
low
Tool 'get_file_health_timeline' has no annotations annotation_checker · 100%
low
Tool 'get_workspace_map' has no annotations annotation_checker · 100%
low
Tool 'get_cross_workspace_impact' has no annotations annotation_checker · 100%
low
Tool 'mine_sessions' has no annotations annotation_checker · 100%
low
Tool 'add_decision' has no annotations annotation_checker · 100%
low
Tool 'remember_decision' has no annotations annotation_checker · 100%
low
Tool 'query_decisions' has no annotations annotation_checker · 100%
low
Tool 'get_decision' has no annotations annotation_checker · 100%
low
Tool 'export_decisions' has no annotations annotation_checker · 100%
low
Tool 'invalidate_decision' has no annotations annotation_checker · 100%
low
Tool 'approve_decision' has no annotations annotation_checker · 100%
low
Tool 'reject_decision' has no annotations annotation_checker · 100%
low
Tool 'tune_decision_weights' has no annotations annotation_checker · 100%
low
Tool 'get_decision_timeline' has no annotations annotation_checker · 100%
low
Tool 'get_decision_stats' has no annotations annotation_checker · 100%
low
Tool 'build_decision_clusters' has no annotations annotation_checker · 100%
low
Tool 'consolidate_decisions' has no annotations annotation_checker · 100%
low
Tool 'get_decision_clusters' has no annotations annotation_checker · 100%
low
Tool 'get_cluster_decisions' has no annotations annotation_checker · 100%
low
Tool 'regenerate_project_memo' has no annotations annotation_checker · 100%
low
Tool 'index_sessions' has no annotations annotation_checker · 100%
low
Tool 'search_sessions' has no annotations annotation_checker · 100%
low
Tool 'get_wake_up' has no annotations annotation_checker · 100%
low
Tool 'get_implementations' has no annotations annotation_checker · 100%
low
Tool 'get_api_surface' has no annotations annotation_checker · 100%
low
Tool 'get_plugin_registry' has no annotations annotation_checker · 100%
low
Tool 'get_type_hierarchy' has no annotations annotation_checker · 100%
low
Tool 'get_import_graph' has no annotations annotation_checker · 100%
low
Tool 'get_untested_symbols' has no annotations annotation_checker · 100%
low
Tool 'self_audit' has no annotations annotation_checker · 100%
low
Tool 'generate_insights_report' has no annotations annotation_checker · 100%
low
Tool 'get_coupling' has no annotations annotation_checker · 100%
low
Tool 'get_circular_imports' has no annotations annotation_checker · 100%
low
Tool 'get_pagerank' has no annotations annotation_checker · 100%
low
Tool 'get_edge_bottlenecks' has no annotations annotation_checker · 100%
low
Tool 'get_refactor_candidates' has no annotations annotation_checker · 100%
low
Tool 'get_project_health' has no annotations annotation_checker · 100%
low
Tool 'check_architecture' has no annotations annotation_checker · 100%
low
Tool 'get_code_owners' has no annotations annotation_checker · 100%
low
Tool 'get_symbol_owners' has no annotations annotation_checker · 100%
low
Tool 'get_complexity_trend' has no annotations annotation_checker · 100%
low
Tool 'get_coupling_trend' has no annotations annotation_checker · 100%
low
Tool 'get_symbol_complexity_trend' has no annotations annotation_checker · 100%
low
Tool 'check_duplication' has no annotations annotation_checker · 100%
low
Tool 'pin' has no annotations annotation_checker · 100%
low
Tool 'unpin' has no annotations annotation_checker · 100%
low
Tool 'list_pins' has no annotations annotation_checker · 100%
low
Tool 'get_git_churn' has no annotations annotation_checker · 100%
low
Tool 'get_risk_hotspots' has no annotations annotation_checker · 100%
low
Tool 'get_dead_code' has no annotations annotation_checker · 100%
low
Tool 'scan_security' has no annotations annotation_checker · 100%
low
Tool 'detect_antipatterns' has no annotations annotation_checker · 100%
low
Tool 'scan_code_smells' has no annotations annotation_checker · 100%
low
Tool 'detect_ast_clones' has no annotations annotation_checker · 100%
low
Tool 'taint_analysis' has no annotations annotation_checker · 100%
low
Tool 'generate_sbom' has no annotations annotation_checker · 100%
low
Tool 'get_artifacts' has no annotations annotation_checker · 100%
low
Tool 'plan_batch_change' has no annotations annotation_checker · 100%
low
Tool 'get_complexity_report' has no annotations annotation_checker · 100%
low
Tool 'check_rename' has no annotations annotation_checker · 100%
low
Tool 'apply_rename' has no annotations annotation_checker · 100%
low
Tool 'remove_dead_code' has no annotations annotation_checker · 100%
low
Tool 'extract_function' has no annotations annotation_checker · 100%
low
Tool 'apply_codemod' has no annotations annotation_checker · 100%
low
Tool 'apply_move' has no annotations annotation_checker · 100%
low
Tool 'change_signature' has no annotations annotation_checker · 100%
low
Tool 'plan_refactoring' has no annotations annotation_checker · 100%
low
Tool 'search_bundles' has no annotations annotation_checker · 100%
low
Tool 'list_bundles' has no annotations annotation_checker · 100%
low
Tool 'benchmark_project' has no annotations annotation_checker · 100%
low
Tool 'get_startup_context_audit' has no annotations annotation_checker · 100%
low
Tool 'apply_startup_recommendations' has no annotations annotation_checker · 100%
low
Tool 'rollback_startup_recommendations' has no annotations annotation_checker · 100%
low
Tool 'check_embedding_drift' has no annotations annotation_checker · 100%
low
Tool 'tune_weights' has no annotations annotation_checker · 100%
low
Tool 'analyze_perf' has no annotations annotation_checker · 100%
low
Tool 'get_session_journal' has no annotations annotation_checker · 100%
low
Tool 'get_session_snapshot' has no annotations annotation_checker · 100%
low
Tool 'get_component_tree' has no annotations annotation_checker · 100%
low
Tool 'get_request_flow' has no annotations annotation_checker · 100%
low
Tool 'get_middleware_chain' has no annotations annotation_checker · 100%
low
Tool 'get_module_graph' has no annotations annotation_checker · 100%
low
Tool 'get_di_tree' has no annotations annotation_checker · 100%
low
Tool 'get_navigation_graph' has no annotations annotation_checker · 100%
low
Tool 'get_screen_context' has no annotations annotation_checker · 100%
low
Tool 'get_model_context' has no annotations annotation_checker · 100%
low
Tool 'get_schema' has no annotations annotation_checker · 100%
low
Tool 'get_event_graph' has no annotations annotation_checker · 100%
low
Tool 'find_usages' has no annotations annotation_checker · 100%
low
Tool 'get_call_graph' has no annotations annotation_checker · 100%
low
Tool 'get_tests_for' has no annotations annotation_checker · 100%
low
Tool 'get_livewire_context' has no annotations annotation_checker · 100%
low
Tool 'get_nova_resource' has no annotations annotation_checker · 100%
low
Tool 'get_state_stores' has no annotations annotation_checker · 100%
low
Tool 'build_corpus' has no annotations annotation_checker · 100%
low
Tool 'list_corpora' has no annotations annotation_checker · 100%
low
Tool 'query_corpus' has no annotations annotation_checker · 100%
low
Tool 'delete_corpus' has no annotations annotation_checker · 100%
low
Tool 'list_projects' has no annotations annotation_checker · 100%
low
Tool 'call_project_tool' has no annotations annotation_checker · 100%
low
Tool 'trace_state_init' has no annotations annotation_checker · 100%
low
Tool 'trace_state_patch' has no annotations annotation_checker · 100%
low
Tool 'trace_state_get' has no annotations annotation_checker · 100%
low
Tool 'trace_state_checkpoint' has no annotations annotation_checker · 100%
low
Tool 'trace_state_rollback' has no annotations annotation_checker · 100%
low
Tool 'trace_state_add_dead_end' has no annotations annotation_checker · 100%
low
Tool 'trace_state_list' has no annotations annotation_checker · 100%
low
Tool 'get_co_changes' has no annotations annotation_checker · 100%
low
Tool 'refresh_co_changes' has no annotations annotation_checker · 100%
low
Tool 'get_changed_symbols' has no annotations annotation_checker · 100%
low
Tool 'compare_branches' has no annotations annotation_checker · 100%
low
Tool 'detect_communities' has no annotations annotation_checker · 100%
low
Tool 'get_communities' has no annotations annotation_checker · 100%
low
Tool 'get_community' has no annotations annotation_checker · 100%
low
Tool 'get_surprises' has no annotations annotation_checker · 100%
low
Tool 'audit_config' has no annotations annotation_checker · 100%
low
Tool 'check_claudemd_drift' has no annotations annotation_checker · 100%
low
Tool 'get_control_flow' has no annotations annotation_checker · 100%
low
Tool 'get_package_deps' has no annotations annotation_checker · 100%
low
Tool 'verify_docs' has no annotations annotation_checker · 100%
low
Tool 'generate_docs' has no annotations annotation_checker · 100%
low
Tool 'pack_context' has no annotations annotation_checker · 100%
low
Tool 'get_suggested_questions' has no annotations annotation_checker · 100%
low
Tool 'check_quality_gates' has no annotations annotation_checker · 100%
low
Tool 'export_security_context' has no annotations annotation_checker · 100%
low
Tool 'check_edit_safe' has no annotations annotation_checker · 100%
low
Tool 'get_diagnostics' has no annotations annotation_checker · 100%
low
Tool 'get_index_health' has no annotations annotation_checker · 100%
low
Tool 'reindex' has no annotations annotation_checker · 100%
low
Tool 'embed_repo' has no annotations annotation_checker · 100%
low
Tool 'verify_index' has no annotations annotation_checker · 100%
low
Tool 'repair_index' has no annotations annotation_checker · 100%
low
Tool 'register_edit' has no annotations annotation_checker · 100%
low
Tool 'get_minimal_context' has no annotations annotation_checker · 100%
low
Tool 'get_project_map' has no annotations annotation_checker · 100%
low
Tool 'get_env_vars' has no annotations annotation_checker · 100%
low
Tool '${projectHash(projectRoot)}-reindex' has no annotations annotation_checker · 100%
low
Tool '${projectHash(projectRoot)}-repair' has no annotations annotation_checker · 100%
low
Tool 'explain_symbol' has no annotations annotation_checker · 100%
low
Tool 'suggest_tests' has no annotations annotation_checker · 100%
low
Tool 'review_change' has no annotations annotation_checker · 100%
low
Tool 'find_similar' has no annotations annotation_checker · 100%
low
Tool 'explain_architecture' has no annotations annotation_checker · 100%
low
Tool 'a' has no annotations annotation_checker · 100%
low
Tool 'get_task_context' has no annotations annotation_checker · 100%
low
Tool 'suggest_queries' has no annotations annotation_checker · 100%
low
Tool 'get_symbol' has no annotations annotation_checker · 100%
low
Tool 'get_change_impact' has no annotations annotation_checker · 100%
low
Tool 'get_related_symbols' has no annotations annotation_checker · 100%
low
Tool 'get_context_bundle' has no annotations annotation_checker · 100%
low
Tool 'get_feature_context' has no annotations annotation_checker · 100%
high
Hardcoded API key in nikolai-vysotskyi-trace-mcp-9cf5043/tests/tools/code-smells.test.ts auth_checker · 90%
info
Sandbox failed to start for behavioral verification behavioral_verifier · 100%
medium
Excessive dependency count: 90 direct dependencies dependency_analyzer · 90%
medium
Suspicious package name: react-dom dependency_analyzer · 60%
medium
Suspicious package name: react-markdown dependency_analyzer · 60%
medium
Suspicious package name: react-native dependency_analyzer · 60%
medium
Vulnerable dependency: vitest@4.1.4 (GHSA-82fw-gwwq-j7x9) dependency_analyzer · 95%
medium
Vulnerable dependency: vitest@4.1.0 (GHSA-82fw-gwwq-j7x9) dependency_analyzer · 95%
medium
Vulnerable dependency: @nestjs/core@10.0.0 (GHSA-36xv-jgw5-4q75) dependency_analyzer · 95%
medium
Vulnerable dependency: @nestjs/common@10.0.0 (GHSA-cj7v-w2c7-cp7c) dependency_analyzer · 95%
medium
Vulnerable dependency: aws-sdk@2.1550.0 (GHSA-j965-2qgj-vjmq) dependency_analyzer · 95%
medium
Vulnerable dependency: mongoose@8.0.0 (GHSA-664h-wqgq-64gw) dependency_analyzer · 95%
medium
Vulnerable dependency: mongoose@8.0.0 (GHSA-m7xq-9374-9rvx) dependency_analyzer · 95%
medium
Vulnerable dependency: mongoose@8.0.0 (GHSA-vg7j-7cwx-8wgw) dependency_analyzer · 95%
medium
Vulnerable dependency: mongoose@8.0.0 (GHSA-wpg9-53fq-2r8h) dependency_analyzer · 95%
medium
Vulnerable dependency: vue@2.7.0 (GHSA-5j4c-8p2g-v4jx) dependency_analyzer · 95%
medium
Vulnerable dependency: nuxt@4.0.0 (GHSA-48hr-524c-v5w3) dependency_analyzer · 95%
medium
Vulnerable dependency: nuxt@4.0.0 (GHSA-534h-c3cw-v3h9) dependency_analyzer · 95%
medium
Vulnerable dependency: nuxt@4.0.0 (GHSA-934w-87qh-qr26) dependency_analyzer · 95%
medium
Vulnerable dependency: nuxt@4.0.0 (GHSA-9473-5f9j-94wq) dependency_analyzer · 95%
medium
Vulnerable dependency: nuxt@4.0.0 (GHSA-9pgf-384g-p7mv) dependency_analyzer · 95%
medium
Vulnerable dependency: nuxt@4.0.0 (GHSA-c9cv-mq2m-ppp3) dependency_analyzer · 95%
medium
Vulnerable dependency: nuxt@4.0.0 (GHSA-fx6j-w5w5-h468) dependency_analyzer · 95%
medium
Vulnerable dependency: nuxt@4.0.0 (GHSA-g8wj-3cr3-6w7v) dependency_analyzer · 95%
medium
Vulnerable dependency: nuxt@4.0.0 (GHSA-hg3f-28rg-4jxj) dependency_analyzer · 95%
medium
Vulnerable dependency: nuxt@4.0.0 (GHSA-hxcr-hm88-mpq6) dependency_analyzer · 95%
medium
Vulnerable dependency: nuxt@4.0.0 (GHSA-m3q2-p4fw-w38m) dependency_analyzer · 95%
medium
Vulnerable dependency: nuxt@4.0.0 (GHSA-mm7m-92g8-7m47) dependency_analyzer · 95%
medium
Vulnerable dependency: nuxt@4.0.0 (GHSA-p6jq-8vc4-79f6) dependency_analyzer · 95%
medium
Vulnerable dependency: nuxt@4.0.0 (GHSA-rq7w-g337-39qq) dependency_analyzer · 95%
medium
Vulnerable dependency: electron@28.0.0 (GHSA-3c8v-cfp5-9885) dependency_analyzer · 95%
medium
Vulnerable dependency: electron@28.0.0 (GHSA-4f78-qhmw-8j8m) dependency_analyzer · 95%
medium
Vulnerable dependency: electron@28.0.0 (GHSA-4p4r-m79c-wq3v) dependency_analyzer · 95%
medium
Vulnerable dependency: electron@28.0.0 (GHSA-532v-xpq5-8h95) dependency_analyzer · 95%
medium
Vulnerable dependency: electron@28.0.0 (GHSA-5c9j-mhmv-5xgx) dependency_analyzer · 95%
medium
Vulnerable dependency: electron@28.0.0 (GHSA-5rqw-r77c-jp79) dependency_analyzer · 95%
medium
Vulnerable dependency: electron@28.0.0 (GHSA-6r2x-8pq8-9489) dependency_analyzer · 95%
medium
Vulnerable dependency: electron@28.0.0 (GHSA-8337-3p73-46f4) dependency_analyzer · 95%
medium
Vulnerable dependency: electron@28.0.0 (GHSA-9899-m83m-qhpj) dependency_analyzer · 95%
medium
Vulnerable dependency: electron@28.0.0 (GHSA-9f4c-93c8-jc8g) dependency_analyzer · 95%
medium
Vulnerable dependency: electron@28.0.0 (GHSA-9pf5-hg6p-4pwp) dependency_analyzer · 95%
medium
Vulnerable dependency: electron@28.0.0 (GHSA-9w97-2464-8783) dependency_analyzer · 95%
medium
Vulnerable dependency: electron@28.0.0 (GHSA-9wfr-w7mm-pc7f) dependency_analyzer · 95%
medium
Vulnerable dependency: electron@28.0.0 (GHSA-f2r8-jv7c-xqmp) dependency_analyzer · 95%
medium
Vulnerable dependency: electron@28.0.0 (GHSA-f37v-82c4-4x64) dependency_analyzer · 95%
medium
Vulnerable dependency: electron@28.0.0 (GHSA-f3pv-wv63-48x8) dependency_analyzer · 95%
medium
Vulnerable dependency: electron@28.0.0 (GHSA-ff2p-hmqr-hxm4) dependency_analyzer · 95%
medium
Vulnerable dependency: electron@28.0.0 (GHSA-h7rp-cf8h-j98x) dependency_analyzer · 95%
medium
Vulnerable dependency: electron@28.0.0 (GHSA-jfqx-fxh3-c62j) dependency_analyzer · 95%
medium
Vulnerable dependency: electron@28.0.0 (GHSA-jjp3-mq3x-295m) dependency_analyzer · 95%
medium
Vulnerable dependency: electron@28.0.0 (GHSA-jm7p-cc5g-qwxx) dependency_analyzer · 95%
medium
Vulnerable dependency: electron@28.0.0 (GHSA-m55f-7gqj-fr98) dependency_analyzer · 95%
medium
Vulnerable dependency: electron@28.0.0 (GHSA-mwmh-mq4g-g6gr) dependency_analyzer · 95%
medium
Vulnerable dependency: electron@28.0.0 (GHSA-p2rr-rvmm-c5fp) dependency_analyzer · 95%
medium
Vulnerable dependency: electron@28.0.0 (GHSA-pfmc-3mgc-p6fp) dependency_analyzer · 95%
medium
Vulnerable dependency: electron@28.0.0 (GHSA-r5p7-gp4j-qhrx) dependency_analyzer · 95%
medium
Vulnerable dependency: electron@28.0.0 (GHSA-v3j7-r9gq-3gjw) dependency_analyzer · 95%
medium
Vulnerable dependency: electron@28.0.0 (GHSA-v64r-4m7r-3mvq) dependency_analyzer · 95%
medium
Vulnerable dependency: electron@28.0.0 (GHSA-v93f-fgjr-hjrj) dependency_analyzer · 95%
medium
Vulnerable dependency: electron@28.0.0 (GHSA-vmqv-hx8q-j7mg) dependency_analyzer · 95%
medium
Vulnerable dependency: electron@28.0.0 (GHSA-x8rc-wpg4-grpf) dependency_analyzer · 95%
medium
Vulnerable dependency: electron@28.0.0 (GHSA-xj5x-m3f3-5x3h) dependency_analyzer · 95%
medium
Vulnerable dependency: electron@28.0.0 (GHSA-xwr5-m59h-vwqr) dependency_analyzer · 95%
medium
Vulnerable dependency: next@14.0.0 (GHSA-2xp9-vwfh-vxw4) dependency_analyzer · 95%
medium
Vulnerable dependency: next@14.0.0 (GHSA-36qx-fr4f-26g5) dependency_analyzer · 95%
medium
Vulnerable dependency: next@14.0.0 (GHSA-3g8h-86w9-wvmq) dependency_analyzer · 95%
medium
Vulnerable dependency: next@14.0.0 (GHSA-3h52-269p-cp9r) dependency_analyzer · 95%
medium
Vulnerable dependency: next@14.0.0 (GHSA-3x4c-7xq6-9pq8) dependency_analyzer · 95%
medium
Vulnerable dependency: next@14.0.0 (GHSA-4342-x723-ch2f) dependency_analyzer · 95%
medium
Vulnerable dependency: next@14.0.0 (GHSA-4633-3j49-mh5q) dependency_analyzer · 95%
medium
Vulnerable dependency: next@14.0.0 (GHSA-4c39-4ccg-62r3) dependency_analyzer · 95%
medium
Vulnerable dependency: next@14.0.0 (GHSA-5j59-xgg2-r9c4) dependency_analyzer · 95%
medium
Vulnerable dependency: next@14.0.0 (GHSA-68g3-v927-f742) dependency_analyzer · 95%
medium
Vulnerable dependency: next@14.0.0 (GHSA-7gfc-8cq8-jh5f) dependency_analyzer · 95%
medium
Vulnerable dependency: next@14.0.0 (GHSA-7m27-7ghc-44w9) dependency_analyzer · 95%
medium
Vulnerable dependency: next@14.0.0 (GHSA-8h8q-6873-q5fj) dependency_analyzer · 95%
medium
Vulnerable dependency: next@14.0.0 (GHSA-955p-x3mx-jcvp) dependency_analyzer · 95%
medium
Vulnerable dependency: next@14.0.0 (GHSA-9g9p-9gw9-jx7f) dependency_analyzer · 95%
medium
Vulnerable dependency: next@14.0.0 (GHSA-c4j6-fc7j-m34r) dependency_analyzer · 95%
medium
Vulnerable dependency: next@14.0.0 (GHSA-f82v-jwr5-mffw) dependency_analyzer · 95%
medium
Vulnerable dependency: next@14.0.0 (GHSA-ffhc-5mcf-pf4q) dependency_analyzer · 95%
medium
Vulnerable dependency: next@14.0.0 (GHSA-fr5h-rqp8-mj6g) dependency_analyzer · 95%
medium
Vulnerable dependency: next@14.0.0 (GHSA-g5qg-72qw-gw5v) dependency_analyzer · 95%
medium
Vulnerable dependency: next@14.0.0 (GHSA-g77x-44xx-532m) dependency_analyzer · 95%
medium
Vulnerable dependency: next@14.0.0 (GHSA-ggv3-7p47-pfv8) dependency_analyzer · 95%
medium
Vulnerable dependency: next@14.0.0 (GHSA-gp8f-8m3g-qvj9) dependency_analyzer · 95%
medium
Vulnerable dependency: next@14.0.0 (GHSA-gx5p-jg67-6x7h) dependency_analyzer · 95%
medium
Vulnerable dependency: next@14.0.0 (GHSA-h25m-26qc-wcjf) dependency_analyzer · 95%
medium
Vulnerable dependency: next@14.0.0 (GHSA-h64f-5h5j-jqjh) dependency_analyzer · 95%
medium
Vulnerable dependency: next@14.0.0 (GHSA-m99w-x7hq-7vfj) dependency_analyzer · 95%
medium
Vulnerable dependency: next@14.0.0 (GHSA-mwv6-3258-q52c) dependency_analyzer · 95%
medium
Vulnerable dependency: next@14.0.0 (GHSA-p293-qw3h-jr36) dependency_analyzer · 95%
medium
Vulnerable dependency: next@14.0.0 (GHSA-p9j2-gv94-2wf4) dependency_analyzer · 95%
medium
Vulnerable dependency: next@14.0.0 (GHSA-q4gf-8mx6-v5v3) dependency_analyzer · 95%
medium
Vulnerable dependency: next@14.0.0 (GHSA-qpjv-v59x-3qc4) dependency_analyzer · 95%
medium
Vulnerable dependency: next@14.0.0 (GHSA-vfv6-92ff-j949) dependency_analyzer · 95%
medium
Vulnerable dependency: next@14.0.0 (GHSA-xv57-4mr9-wg8v) dependency_analyzer · 95%
medium
Vulnerable dependency: express@4.18.0 (GHSA-qw6h-vgh9-j6wx) dependency_analyzer · 95%
medium
Vulnerable dependency: express@4.18.0 (GHSA-rv95-896h-c2vc) dependency_analyzer · 95%
medium
Vulnerable dependency: tsup@8.0.0 (GHSA-3mv9-4h5g-vhg3) dependency_analyzer · 95%
medium
Vulnerable dependency: nuxt@3.10.0 (GHSA-48hr-524c-v5w3) dependency_analyzer · 95%
medium
Vulnerable dependency: nuxt@3.10.0 (GHSA-934w-87qh-qr26) dependency_analyzer · 95%
medium
Vulnerable dependency: nuxt@3.10.0 (GHSA-9473-5f9j-94wq) dependency_analyzer · 95%
medium
Vulnerable dependency: nuxt@3.10.0 (GHSA-9pgf-384g-p7mv) dependency_analyzer · 95%
medium
Vulnerable dependency: nuxt@3.10.0 (GHSA-c9cv-mq2m-ppp3) dependency_analyzer · 95%
medium
Vulnerable dependency: nuxt@3.10.0 (GHSA-fx6j-w5w5-h468) dependency_analyzer · 95%
medium
Vulnerable dependency: nuxt@3.10.0 (GHSA-g8wj-3cr3-6w7v) dependency_analyzer · 95%
medium
Vulnerable dependency: nuxt@3.10.0 (GHSA-hxcr-hm88-mpq6) dependency_analyzer · 95%
medium
Vulnerable dependency: nuxt@3.10.0 (GHSA-jvhm-gjrh-3h93) dependency_analyzer · 95%
medium
Vulnerable dependency: nuxt@3.10.0 (GHSA-m3q2-p4fw-w38m) dependency_analyzer · 95%
medium
Vulnerable dependency: nuxt@3.10.0 (GHSA-p6jq-8vc4-79f6) dependency_analyzer · 95%
medium
Vulnerable dependency: nuxt@3.10.0 (GHSA-v784-fjjh-f8r4) dependency_analyzer · 95%
medium
Vulnerable dependency: nuxt@3.10.0 (GHSA-vf6r-87q4-2vjf) dependency_analyzer · 95%
medium
Vulnerable dependency: @modelcontextprotocol/sdk@1.0.0 (GHSA-w48q-cv73-mx4w) dependency_analyzer · 95%
medium
Vulnerable dependency: nodemailer@6.9.16 (GHSA-268h-hp4c-crq3) dependency_analyzer · 95%
medium
Vulnerable dependency: nodemailer@6.9.16 (GHSA-2x7j-588g-ccc2) dependency_analyzer · 95%
medium
Vulnerable dependency: nodemailer@6.9.16 (GHSA-8m3c-c648-2xjj) dependency_analyzer · 95%
medium
Vulnerable dependency: nodemailer@6.9.16 (GHSA-c7w3-x93f-qmm8) dependency_analyzer · 95%
medium
Vulnerable dependency: nodemailer@6.9.16 (GHSA-cc9r-2j5m-2m83) dependency_analyzer · 95%
medium
Vulnerable dependency: nodemailer@6.9.16 (GHSA-mm7p-fcc7-pg87) dependency_analyzer · 95%
medium
Vulnerable dependency: nodemailer@6.9.16 (GHSA-p6gq-j5cr-w38f) dependency_analyzer · 95%
medium
Vulnerable dependency: nodemailer@6.9.16 (GHSA-r7g4-qg5f-qqm2) dependency_analyzer · 95%
medium
Vulnerable dependency: nodemailer@6.9.16 (GHSA-rcmh-qjqh-p98v) dependency_analyzer · 95%
medium
Vulnerable dependency: nodemailer@6.9.16 (GHSA-vvjj-xcjg-gr5g) dependency_analyzer · 95%
medium
Vulnerable dependency: nodemailer@6.9.16 (GHSA-wmmp-3585-3rmp) dependency_analyzer · 95%
medium
Vulnerable dependency: nodemailer@6.9.16 (GHSA-wqvq-jvpq-h66f) dependency_analyzer · 95%
medium
Vulnerable dependency: zod@3.0.0 (GHSA-m95q-7qp3-xv42) dependency_analyzer · 95%
medium
Vulnerable dependency: sequelize@6.0.0 (GHSA-6457-6jrx-69cr) dependency_analyzer · 95%
medium
Vulnerable dependency: sequelize@6.0.0 (GHSA-8c25-f3mj-v6h8) dependency_analyzer · 95%
medium
Vulnerable dependency: sequelize@6.0.0 (GHSA-f598-mfpv-gmfx) dependency_analyzer · 95%
medium
Vulnerable dependency: sequelize@6.0.0 (GHSA-v8fg-2rw7-q452) dependency_analyzer · 95%
medium
Vulnerable dependency: sequelize@6.0.0 (GHSA-vqfx-gj96-3w95) dependency_analyzer · 95%
medium
Vulnerable dependency: sequelize@6.0.0 (GHSA-wrh9-cjv3-2hpw) dependency_analyzer · 95%
medium
Vulnerable dependency: flask@3.0.0 (GHSA-68rp-wp8r-4726) dependency_analyzer · 95%
medium
Vulnerable dependency: flask@3.0.0 (PYSEC-2026-2151) dependency_analyzer · 95%
medium
Buffer.from base64 in nikolai-vysotskyi-trace-mcp-9cf5043/scripts/gen-readme-banner.mjs:393 entropy_analyzer · 75%
medium
Buffer.from base64 in nikolai-vysotskyi-trace-mcp-9cf5043/scripts/capture-screenshots.mjs:714 entropy_analyzer · 75%
medium
Buffer.from base64 in nikolai-vysotskyi-trace-mcp-9cf5043/packages/app/scripts/electron-cdp.mjs:220 entropy_analyzer · 75%
medium
High-entropy string (6.09 bits/char) in nikolai-vysotskyi-trace-mcp-9cf5043/packages/app/src/shared/i18n/catalog/ja/update.ts:4 entropy_analyzer · 56%
medium
High-entropy string (5.94 bits/char) in nikolai-vysotskyi-trace-mcp-9cf5043/packages/app/src/shared/i18n/catalog/ja/update.ts:11 entropy_analyzer · 54%
medium
High-entropy string (5.74 bits/char) in nikolai-vysotskyi-trace-mcp-9cf5043/packages/app/src/shared/i18n/catalog/ja/memory.ts:44 entropy_analyzer · 51%
medium
High-entropy string (5.73 bits/char) in nikolai-vysotskyi-trace-mcp-9cf5043/packages/app/src/shared/i18n/catalog/ja/settings.ts:174 entropy_analyzer · 50%
medium
High-entropy string (5.73 bits/char) in nikolai-vysotskyi-trace-mcp-9cf5043/packages/app/src/shared/i18n/catalog/ja/settings.ts:177 entropy_analyzer · 51%
medium
High-entropy string (5.84 bits/char) in nikolai-vysotskyi-trace-mcp-9cf5043/packages/app/src/shared/i18n/catalog/ja/savings.ts:16 entropy_analyzer · 52%
medium
High-entropy string (5.90 bits/char) in nikolai-vysotskyi-trace-mcp-9cf5043/packages/app/src/shared/i18n/catalog/ja/guard.ts:4 entropy_analyzer · 53%
medium
High-entropy string (6.15 bits/char) in nikolai-vysotskyi-trace-mcp-9cf5043/packages/app/src/shared/i18n/catalog/ja/guard.ts:10 entropy_analyzer · 57%
medium
High-entropy string (5.92 bits/char) in nikolai-vysotskyi-trace-mcp-9cf5043/packages/app/src/shared/i18n/catalog/zh/update.ts:4 entropy_analyzer · 53%
medium
High-entropy string (5.84 bits/char) in nikolai-vysotskyi-trace-mcp-9cf5043/packages/app/src/shared/i18n/catalog/zh/update.ts:11 entropy_analyzer · 52%
medium
High-entropy string (5.76 bits/char) in nikolai-vysotskyi-trace-mcp-9cf5043/packages/app/src/shared/i18n/catalog/zh/insights.ts:38 entropy_analyzer · 51%
medium
High-entropy string (5.95 bits/char) in nikolai-vysotskyi-trace-mcp-9cf5043/packages/app/src/shared/i18n/catalog/zh/guard.ts:10 entropy_analyzer · 54%
medium
High-entropy string (5.78 bits/char) in nikolai-vysotskyi-trace-mcp-9cf5043/packages/app/src/shared/i18n/catalog/ko/update.ts:4 entropy_analyzer · 51%
medium
Buffer.from base64 in nikolai-vysotskyi-trace-mcp-9cf5043/src/telemetry/__tests__/langfuse-sink.test.ts:37 entropy_analyzer · 75%
info
package.json metadata manifest_parser · 100%
info
pyproject.toml metadata manifest_parser · 100%
info
Tool: name manifest_parser · 70%
info
Tool: search manifest_parser · 70%
info
Tool: get_outline manifest_parser · 70%
info
Tool: blocked_tool manifest_parser · 70%
info
Tool: blocked manifest_parser · 70%
info
Tool: get_user manifest_parser · 70%
info
Tool: create_item manifest_parser · 70%
info
Tool: echo manifest_parser · 70%
info
Tool: test-client manifest_parser · 75%
info
Tool: mcp-sdk manifest_parser · 75%
info
Tool: get_service_map manifest_parser · 70%
info
Tool: get_cross_service_impact manifest_parser · 70%
info
Tool: get_api_contract manifest_parser · 70%
info
Tool: get_service_deps manifest_parser · 70%
info
Tool: get_contract_drift manifest_parser · 70%
info
Tool: get_federation_impact manifest_parser · 70%
info
Tool: get_subproject_graph manifest_parser · 70%
info
Tool: get_subproject_impact manifest_parser · 70%
info
Tool: subproject_add_repo manifest_parser · 70%
info
Tool: subproject_sync manifest_parser · 70%
info
Tool: get_domain_map manifest_parser · 70%
info
Tool: detect_topic_tunnels manifest_parser · 70%
info
Tool: get_subproject_clients manifest_parser · 70%
info
Tool: get_contract_versions manifest_parser · 70%
info
Tool: discover_claude_sessions manifest_parser · 70%
info
Tool: visualize_subproject_topology manifest_parser · 70%
info
Tool: get_runtime_profile manifest_parser · 70%
info
Tool: get_runtime_call_graph manifest_parser · 70%
info
Tool: get_endpoint_analytics manifest_parser · 70%
info
Tool: get_runtime_deps manifest_parser · 70%
info
Tool: discover_hermes_sessions manifest_parser · 70%
info
Tool: query_by_intent manifest_parser · 70%
info
Tool: get_domain_context manifest_parser · 70%
info
Tool: get_cross_domain_deps manifest_parser · 70%
info
Tool: graph_query manifest_parser · 70%
info
Tool: traverse_graph manifest_parser · 70%
info
Tool: get_dataflow manifest_parser · 70%
info
Tool: snapshot_graph manifest_parser · 70%
info
Tool: list_graph_snapshots manifest_parser · 70%
info
Tool: diff_graph_snapshots manifest_parser · 70%
info
Tool: get_graph_timeline manifest_parser · 70%
info
Tool: export_graph manifest_parser · 70%
info
Tool: visualize_graph manifest_parser · 70%
info
Tool: get_dependency_diagram manifest_parser · 70%
info
Tool: search_text manifest_parser · 70%
info
Tool: predict_bugs manifest_parser · 70%
info
Tool: detect_drift manifest_parser · 70%
info
Tool: get_tech_debt manifest_parser · 70%
info
Tool: assess_change_risk manifest_parser · 70%
info
Tool: get_health_trends manifest_parser · 70%
info
Tool: get_file_health_timeline manifest_parser · 70%
info
Tool: get_workspace_map manifest_parser · 70%
info
Tool: get_cross_workspace_impact manifest_parser · 70%
info
Tool: mine_sessions manifest_parser · 70%
info
Tool: add_decision manifest_parser · 70%
info
Tool: remember_decision manifest_parser · 70%
info
Tool: query_decisions manifest_parser · 70%
info
Tool: get_decision manifest_parser · 70%
info
Tool: export_decisions manifest_parser · 70%
info
Tool: invalidate_decision manifest_parser · 70%
info
Tool: approve_decision manifest_parser · 70%
info
Tool: reject_decision manifest_parser · 70%
info
Tool: tune_decision_weights manifest_parser · 70%
info
Tool: get_decision_timeline manifest_parser · 70%
info
Tool: get_decision_stats manifest_parser · 70%
info
Tool: build_decision_clusters manifest_parser · 70%
info
Tool: get_untested_symbols manifest_parser · 70%
info
Tool: consolidate_decisions manifest_parser · 70%
info
Tool: get_decision_clusters manifest_parser · 70%
info
Tool: get_cluster_decisions manifest_parser · 70%
info
Tool: regenerate_project_memo manifest_parser · 70%
info
Tool: index_sessions manifest_parser · 70%
info
Tool: search_sessions manifest_parser · 70%
info
Tool: get_wake_up manifest_parser · 70%
info
Tool: get_implementations manifest_parser · 70%
info
Tool: get_api_surface manifest_parser · 70%
info
Tool: get_plugin_registry manifest_parser · 70%
info
Tool: get_type_hierarchy manifest_parser · 70%
info
Tool: get_import_graph manifest_parser · 70%
info
Tool: self_audit manifest_parser · 70%
info
Tool: generate_insights_report manifest_parser · 70%
info
Tool: get_coupling manifest_parser · 70%
info
Tool: get_circular_imports manifest_parser · 70%
info
Tool: get_pagerank manifest_parser · 70%
info
Tool: get_edge_bottlenecks manifest_parser · 70%
info
Tool: get_refactor_candidates manifest_parser · 70%
info
Tool: get_project_health manifest_parser · 70%
info
Tool: check_architecture manifest_parser · 70%
info
Tool: get_code_owners manifest_parser · 70%
info
Tool: get_symbol_owners manifest_parser · 70%
info
Tool: get_complexity_trend manifest_parser · 70%
info
Tool: get_coupling_trend manifest_parser · 70%
info
Tool: get_symbol_complexity_trend manifest_parser · 70%
info
Tool: check_duplication manifest_parser · 70%
info
Tool: pin manifest_parser · 70%
info
Tool: unpin manifest_parser · 70%
info
Tool: list_pins manifest_parser · 70%
info
Tool: get_git_churn manifest_parser · 70%
info
Tool: get_risk_hotspots manifest_parser · 70%
info
Tool: get_dead_code manifest_parser · 70%
info
Tool: scan_security manifest_parser · 70%
info
Tool: detect_antipatterns manifest_parser · 70%
info
Tool: scan_code_smells manifest_parser · 70%
info
Tool: detect_ast_clones manifest_parser · 70%
info
Tool: taint_analysis manifest_parser · 70%
info
Tool: generate_sbom manifest_parser · 70%
info
Tool: get_artifacts manifest_parser · 70%
info
Tool: plan_batch_change manifest_parser · 70%
info
Tool: get_complexity_report manifest_parser · 70%
info
Tool: check_rename manifest_parser · 70%
info
Tool: apply_startup_recommendations manifest_parser · 70%
info
Tool: apply_rename manifest_parser · 70%
info
Tool: remove_dead_code manifest_parser · 70%
info
Tool: extract_function manifest_parser · 70%
info
Tool: apply_codemod manifest_parser · 70%
info
Tool: apply_move manifest_parser · 70%
info
Tool: change_signature manifest_parser · 70%
info
Tool: plan_refactoring manifest_parser · 70%
info
Tool: search_bundles manifest_parser · 70%
info
Tool: list_bundles manifest_parser · 70%
info
Tool: benchmark_project manifest_parser · 70%
info
Tool: get_startup_context_audit manifest_parser · 70%
info
Tool: rollback_startup_recommendations manifest_parser · 70%
info
Tool: check_embedding_drift manifest_parser · 70%
info
Tool: tune_weights manifest_parser · 70%
info
Tool: analyze_perf manifest_parser · 70%
info
Tool: get_session_journal manifest_parser · 70%
info
Tool: get_session_snapshot manifest_parser · 70%
info
Tool: get_component_tree manifest_parser · 70%
info
Tool: get_request_flow manifest_parser · 70%
info
Tool: get_middleware_chain manifest_parser · 70%
info
Tool: get_module_graph manifest_parser · 70%
info
Tool: get_di_tree manifest_parser · 70%
info
Tool: a manifest_parser · 75%
info
Tool: get_navigation_graph manifest_parser · 70%
info
Tool: get_screen_context manifest_parser · 70%
info
Tool: get_model_context manifest_parser · 70%
info
Tool: get_schema manifest_parser · 70%
info
Tool: get_event_graph manifest_parser · 70%
info
Tool: find_usages manifest_parser · 70%
info
Tool: get_call_graph manifest_parser · 70%
info
Tool: get_tests_for manifest_parser · 70%
info
Tool: get_livewire_context manifest_parser · 70%
info
Tool: get_nova_resource manifest_parser · 70%
info
Tool: get_state_stores manifest_parser · 70%
info
Tool: build_corpus manifest_parser · 70%
info
Tool: list_corpora manifest_parser · 70%
info
Tool: query_corpus manifest_parser · 70%
info
Tool: delete_corpus manifest_parser · 70%
info
Tool: list_projects manifest_parser · 70%
info
Tool: call_project_tool manifest_parser · 70%
info
Tool: trace_state_init manifest_parser · 70%
info
Tool: trace_state_patch manifest_parser · 70%
info
Tool: trace_state_get manifest_parser · 70%
info
Tool: trace_state_checkpoint manifest_parser · 70%
info
Tool: trace_state_rollback manifest_parser · 70%
info
Tool: trace_state_add_dead_end manifest_parser · 70%
info
Tool: trace_state_list manifest_parser · 70%
info
Tool: get_co_changes manifest_parser · 70%
info
Tool: refresh_co_changes manifest_parser · 70%
info
Tool: get_changed_symbols manifest_parser · 70%
info
Tool: compare_branches manifest_parser · 70%
info
Tool: detect_communities manifest_parser · 70%
info
Tool: get_communities manifest_parser · 70%
info
Tool: get_community manifest_parser · 70%
info
Tool: get_surprises manifest_parser · 70%
info
Tool: audit_config manifest_parser · 70%
info
Tool: check_claudemd_drift manifest_parser · 70%
info
Tool: get_control_flow manifest_parser · 70%
info
Tool: get_package_deps manifest_parser · 70%
info
Tool: verify_docs manifest_parser · 70%
info
Tool: generate_docs manifest_parser · 70%
info
Tool: pack_context manifest_parser · 70%
info
Tool: get_suggested_questions manifest_parser · 70%
info
Tool: check_quality_gates manifest_parser · 70%
info
Tool: export_security_context manifest_parser · 70%
info
Tool: check_edit_safe manifest_parser · 70%
info
Tool: get_diagnostics manifest_parser · 70%
info
Tool: get_index_health manifest_parser · 70%
info
Tool: reindex manifest_parser · 70%
info
Tool: embed_repo manifest_parser · 70%
info
Tool: verify_index manifest_parser · 70%
info
Tool: repair_index manifest_parser · 70%
info
Tool: register_edit manifest_parser · 70%
info
Tool: get_minimal_context manifest_parser · 70%
info
Tool: get_project_map manifest_parser · 70%
info
Tool: get_env_vars manifest_parser · 70%
info
Tool: ${projectHash(projectRoot)}-reindex manifest_parser · 75%
info
Tool: ${projectHash(projectRoot)}-repair manifest_parser · 75%
info
Tool: explain_symbol manifest_parser · 70%
info
Tool: suggest_tests manifest_parser · 70%
info
Tool: review_change manifest_parser · 70%
info
Tool: find_similar manifest_parser · 70%
info
Tool: explain_architecture manifest_parser · 70%
info
Tool: get_task_context manifest_parser · 70%
info
Tool: suggest_queries manifest_parser · 70%
info
Tool: get_symbol manifest_parser · 70%
info
Tool: get_change_impact manifest_parser · 70%
info
Tool: get_related_symbols manifest_parser · 70%
info
Tool: get_context_bundle manifest_parser · 70%
info
Tool: get_feature_context manifest_parser · 70%
info
Transport: streamable-http manifest_parser · 80%
info
Required env vars (98) manifest_parser · 80%
info
Sandbox failed to start for output poisoning scan output_poisoning · 100%
medium
Permission: network access detected permission_analyzer · 80%
low
Permission: filesystem access detected permission_analyzer · 90%
high
Permission: shell access detected permission_analyzer · 95%
medium
Permission: database access detected permission_analyzer · 90%
low
Permission: env_vars access detected permission_analyzer · 90%
critical
Tool poisoning in 'get_domain_map': Cross-tool prerequisite: 'first call/use' poisoning · 85%
critical
Tool poisoning in 'get_task_context': Cross-tool prerequisite: 'first call/use' poisoning · 85%
info
SBOM generated: 117 components sbom_generator · 100%
medium
No build provenance detected (SLSA L0) slsa_assessor · 90%