Skip to main content
Glama

mcp-probe-kit — Know the Context, Feed the Moment


Talk is cheap, show me the Context.

mcp-probe-kit is a protocol-level toolkit designed for developers who want AI to understand project intent, choose a precise workflow, and retain validated experience without flooding the model with internal actions.

Languages: English | 简体中文 | 日本語 | 한국어 | Español | Français | Deutsch | Português (BR)

npm version npm downloads License: MIT GitHub stars

🚀 AI-Powered Complete Development Toolkit - Covering the Entire Development Lifecycle

A powerful MCP (Model Context Protocol) server with 24 model-visible tools by default, 30 when Memory is configured, and a 34-tool compatibility surface available through MCP_TOOLSET=full. It covers the complete workflow from product analysis to final release and supports structured output.

🎉 v4 stable release: native MCP Apps, resumable plans, evidence convergence, managed GitNexus Sidecar, parent-child specs, and a version-locked CLI fallback.

Supports All MCP Clients: Cursor, Claude Desktop, Cline, Continue, and more

Protocol Support: Legacy MCP (2025-era) + Modern MCP 2026-07-28 · SDK: split TypeScript SDK v2 packages

Runtime: Node.js 20 or newer. MCP_PROTOCOL_MODE=auto is the default; use legacy or modern only for compatibility diagnosis.


🎬 v4 in action

v4 turns delegated Agent work into an observable and verifiable delivery loop. The animations below are rendered from the same MCP App source shipped in the npm package—not separate marketing mockups.

Feature Workbench — parent-child specs, active step, outputs, evidence, and cross-session recovery.

Memory Center — semantic search, full-content inspection, lifecycle state, evidence, stale marking, and confirmed deletion.

Convergence Gate — blocks closure when steps or requirements/spec/implementation/test/review evidence are incomplete.

  • Five native MCP Apps: Memory Center, Feature Workbench, Bug Workbench, Product Workbench, and Convergence Gate.

  • Resumable delegated plans: plan_heartbeat persists real progress; resume_plan restores the next executable step.

  • Evidence-based convergence: converge gates delivery and long-term Memory writes.

  • Managed GitNexus Sidecar: version/platform/architecture/Node isolation, integrity verification, real FTS probe, and safe degradation.

  • Version-locked CLI fallback: project-local probe wrappers reach the same Tool Registry when a host drops the MCP tool lease.

  • Parent-child specifications: complex releases are decomposed and recursively validated instead of being flattened into one oversized spec.

Open the five live, read-only MCP App demos

v4 stable: mcp-probe-kit@4.0.0 is the current stable release and npm latest channel.


Related MCP server: MCP AI POC

📚 Complete Documentation

👉 https://mcp-probe-kit.bytezonex.com


✨ Core Features

📦 Tool Surfaces

The default compact surface keeps every independently useful workflow while removing competing internal and maintenance entries from the model context.

  • 🧭 Routing (1) — workflow

  • 🔁 Plan State & Convergence (3) — plan_heartbeat, resume_plan, converge

  • 🔄 Workflow Orchestration (6) — start_feature, start_bugfix, start_onboard, start_ui, start_product, start_ralph

  • 📦 Project & Specification (4) — init_project, init_project_context, check_spec, estimate

  • 🏗️ Architecture (1) — architecture

  • 🔍 Code, Test & Git (6) — code_insight, gentest, code_review, refactor, gencommit, git_work_report

  • 🎨 UI/UX Utilities (2) — ui_design_system, ui_search

  • 🗣️ Structured Interview (1) — interview

That is 24 model-visible tools by default. When the full Memory stack is configured, six Memory tools are added dynamically, bringing the model-visible surface to 30:

search_memory, read_memory_asset, memorize_asset, update_memory_asset, delete_memory_asset, scan_and_extract_patterns

For compatibility and diagnostics, MCP_TOOLSET=full restores all 34 model tools. The compact surface deliberately omits add_feature, fix_bug, sync_ui_data, and ask_user: their implementations remain available through orchestration, maintenance scripts, or full compatibility mode.

workflow is a fallback tool-selection guide, not a natural-language intent classifier. The Agent normally chooses the appropriate MCP tool directly from the current conversation, Skill, and tool descriptions. scenario=auto returns guidance only (firstTool=null); an explicit scenario returns deterministic guidance for a scenario the Agent has already selected.

🔁 Delegated Plan State, Recovery, and Convergence

  • Every v4 delegated plan declares executionStatePolicy and instructs the Agent to create a local checkpoint on the first step.

  • plan_heartbeat persists completed/skipped steps, unresolved items, evidence, and the last verified revision under .mcp-probe-kit/plans/.

  • resume_plan recalculates ready and blocked steps from stored dependencies after interruption, restart, or Agent handoff.

  • converge refuses closure while steps, unresolved items, or requirements/spec/implementation/test/review evidence are incomplete. Formal long-term memory writes are allowed only after convergence passes.

  • These tools track and validate Agent execution; they do not move file, shell, Git, or implementation work into the MCP server.

🛡️ Quality Constraints (single source of truth)

All hard quality rules live in one module (src/lib/quality-constraints.ts) and are injected into code_review, the add_feature task templates, and the UI tools. Change once, apply everywhere — inspired by taste-skill and impeccable.

  • Code limits: single file ≤ 500 lines (split into modules/components when exceeded), function ≤ 50 lines, nesting ≤ 4, parameters ≤ 3.

  • Completeness blacklist: code_review flags placeholder/elision patterns (// ..., // TODO, // rest of code, bare ...) as CRITICAL — "a partial output is a broken output".

  • Anti-laziness task templates: add_feature tasks now carry a Scope-lock deliverable count, a mandatory evidence block (read code before writing), a per-file line budget, and a binary zero-tolerance rule for placeholders. check_spec validates these (missing Scope-lock = error, thin task without evidence = warning).

  • UI hard red lines: numeric, machine-checkable rules — 4pt spacing scale, WCAG contrast (4.5/3/3), type scale ≥ 1.25, hero font ≤ 6rem, OKLCH, eight interaction states, cognitive load ≤ 4, motion 150-300ms.

  • UI banned list + Pre-Flight checklist: match-and-refuse blacklist for AI slop (default Inter/Roboto, AI purple-blue gradients, gradient text, cookie-cutter card grids, em-dash, cream/beige body backgrounds, nested cards) plus a delivery-gate self-check matrix.

🧠 Code Graph Bridge (GitNexus)

  • code_insight bridges GitNexus by default for query/context/impact analysis

  • The bridge prefers an explicitly configured or system GitNexus CLI, then a version-locked managed Sidecar; GitNexus is not bundled into the main package and is never globally installed

  • init_project_context bootstraps baseline graph docs under docs/graph-insights/; if docs/project-context.md already exists, it preserves the old context docs and only backfills graph docs plus the index entry

  • start_feature refreshes the GitNexus index and runs task-level query/context/impact narrowing before spec generation to reduce over-scoping

  • start_bugfix refreshes the GitNexus index and runs task-level graph analysis before TBP RCA to constrain failure boundary and blast radius

  • Older projects that already have project-context.md but no graph docs are bootstrapped automatically through the init_project_context step

  • If GitNexus is unavailable, the server falls back automatically without breaking orchestration

  • Real graph queries read the .gitnexus index; docs/graph-insights/latest.md|json are readable snapshots for humans and AI agents

  • MCP resources in MCP client settings list 2 entries (probe://status, probe://project/bootstrap). Graph runtime snapshots (probe://graph/latest, etc.) and probe://project/skill|agents|context|graph remain readable via resources/read when tools expose URIs

  • Graph snapshots are persisted to .mcp-probe-kit/graph-snapshots (customizable via MCP_GRAPH_SNAPSHOT_DIR)

  • Tool responses include _meta.graph with snapshot URI and local JSON/Markdown file paths

🐛 SRC-8 Bug Root-Cause Workflow (TBP-Inspired)

  • SRC-8 Methodology (中文: src8-methodology.zh-CN.md) — Software Root-Cause 8-step protocol inspired by Toyota TBP / PDCA, adapted for code and AI agents

  • start_bugfix runs graph narrowing, then delegated SRC-8 plan (metadata.plan.steps src8-1~8) before repair and tests

  • fix_bug returns delegated plan (src8-1~8), src8Checklist, rootCauseWorksheet (Step 4 core), and hard gates (no code change until root-cause worksheet is closed)

  • Highlights vs manufacturing TBP: repro contract, attribution layers (including agent_behavior), contributing factors, memorize_asset for cross-repo learning

Inherited from Toyota TBP: gap thinking, Plan-before-Do, no skipping to root-cause analysis, fact-based investigation, countermeasures over symptoms, evaluate then standardize.

Our elevation: genchi-genbutsu → read code/logs/repro; Step 4 worksheet; guidance-only MCP that forces discipline while the Agent executes.

🧠 Memory Retrieval

  • Memory tools use Qdrant as the vector database backend

  • Embedding service supports two modes:

    • ollama

    • openai-compatible

Memory tools:

  • search_memory - Semantic search across the shared memory pool (optionally prefer type / tags); text output includes id, score, summary, description, and a --- content --- body (default up to 1500 chars via MEMORY_SEARCH_CONTENT_MAX_CHARS)

  • memorize_asset - Persist an already validated MemoryCandidate into vector memory; for delegated workflows, call it only after converge passes

  • read_memory_asset - Read full asset content by asset_id (text output includes the full content body)

  • update_memory_asset - Update an existing asset by asset_id (preserves ID; content changes re-embed)

  • delete_memory_asset - Delete an asset by asset_id from the shared pool

  • scan_and_extract_patterns - Extract reusable patterns from code/file/directory before deciding whether to persist

Cross-repo memory pools: do not rely on source_project / source_path for shared retrieval; put file paths in content instead. Search injection hides foreign sourcePath unless MEMORY_REPO_ID matches or MEMORY_SEARCH_SHOW_SOURCE=true.

Memory backend and embedding configuration:

  • Vector database: Qdrant

  • Recommended local setup: Qdrant (port 50008) + Infinity / nomic-embed (port 50012) — lighter than Ollama; see Local Memory Stack guide (中文: memory-local-setup.zh-CN.md)

  • Supported embedding providers:

    • ollama

    • openai-compatible (Infinity, OpenAI, etc.)

  • Required environment variables for memory write/search:

    • MEMORY_QDRANT_URL

    • MEMORY_EMBEDDING_URL

    • MEMORY_EMBEDDING_MODEL

  • Optional environment variables:

    • MEMORY_QDRANT_API_KEY

    • MEMORY_QDRANT_COLLECTION (default: mcp_probe_memory)

    • MEMORY_EMBEDDING_API_KEY

    • MEMORY_EMBEDDING_PROVIDER (ollama by default)

    • MEMORY_SEARCH_LIMIT (default: 3)

    • MEMORY_SUMMARY_MAX_CHARS (default: 280)

    • MEMORY_SEARCH_MIN_SCORE (default: 0 = disabled; try 0.72 for noisy pools)

    • MEMORY_SEARCH_SHOW_SOURCE (default: false)

    • MEMORY_REPO_ID (optional; show sourcePath only when sourceProject matches)

    • MEMORY_INJECTION_CONTENT_MAX_CHARS (default: 1500; max content per hit injected into start_* guides)

  • Behavior notes:

    • Read-only memory access only requires MEMORY_QDRANT_URL

    • Memory write is enabled only when MEMORY_QDRANT_URL, MEMORY_EMBEDDING_URL, and MEMORY_EMBEDDING_MODEL are all configured

    • The Qdrant collection is auto-created on first write, and vector dimension is inferred from the first embedding response

Recommended local memory setup (Qdrant + Nomic Embed / Infinity):

Full Docker Compose, ports, and troubleshooting: docs/memory-local-setup.md

{
  "mcpServers": {
    "mcp-probe-kit": {
      "command": "npx",
      "args": ["-y", "mcp-probe-kit@4.0.0"],
      "env": {
        "MEMORY_QDRANT_URL": "http://127.0.0.1:50008",
        "MEMORY_QDRANT_API_KEY": "your-qdrant-api-key",
        "MEMORY_QDRANT_COLLECTION": "mcp_probe_memory",
        "MEMORY_EMBEDDING_PROVIDER": "openai-compatible",
        "MEMORY_EMBEDDING_URL": "http://127.0.0.1:50012/embeddings",
        "MEMORY_EMBEDDING_MODEL": "nomic-ai/nomic-embed-text-v1.5",
        "MEMORY_EMBEDDING_API_KEY": "your-infinity-api-key",
        "MEMORY_SEARCH_LIMIT": "3",
        "MEMORY_SUMMARY_MAX_CHARS": "280"
      }
    }
  }
}

Alternative: Qdrant + Ollama (if you already run Ollama):

docker run -d --name mcp-qdrant -p 6333:6333 qdrant/qdrant
ollama pull nomic-embed-text
"MEMORY_QDRANT_URL": "http://127.0.0.1:6333",
"MEMORY_EMBEDDING_PROVIDER": "ollama",
"MEMORY_EMBEDDING_URL": "http://127.0.0.1:11434/api/embeddings",
"MEMORY_EMBEDDING_MODEL": "nomic-embed-text"

OpenAI-compatible embedding (hosted API):

{
  "mcpServers": {
    "mcp-probe-kit": {
      "command": "npx",
      "args": ["-y", "mcp-probe-kit@4.0.0"],
      "env": {
        "MEMORY_QDRANT_URL": "http://127.0.0.1:6333",
        "MEMORY_QDRANT_COLLECTION": "mcp_probe_memory",
        "MEMORY_EMBEDDING_PROVIDER": "openai-compatible",
        "MEMORY_EMBEDDING_URL": "https://your-embedding-endpoint/v1/embeddings",
        "MEMORY_EMBEDDING_API_KEY": "your-api-key",
        "MEMORY_EMBEDDING_MODEL": "text-embedding-3-small"
      }
    }
  }
}

🎯 Structured Output

Core and orchestration tools support structured output, returning machine-readable JSON data, improving AI parsing accuracy, supporting tool chaining and state tracking.

⏱️ Native Tasks, Progress, and Cancellation

  • Uses an SDK-independent Internal Task Runtime, with the current SDK task protocol exposed through a Legacy Adapter

  • Supports task lifecycle endpoints: tasks/get, tasks/result, tasks/list, tasks/cancel

  • Advertises capabilities.tasks.requests.tools.call so clients can create tasks for tools/call

  • Falls back to synchronous execution when protocol task storage is unavailable

  • Emits notifications/progress when client provides _meta.progressToken

  • Ignores late progress after terminal completion; tool/task result is the final completion signal

  • Handles request cancellation via AbortSignal and preserves a clear cancelled state

  • Long-running orchestration tools (start_*) and sync_ui_data support cooperative cancellation/progress callbacks

  • Internal task persistence defaults to memory. Set MCP_TASK_STORE=json to use .mcp-probe-kit/tasks.json, or set MCP_TASK_STORE_PATH to choose another JSON path. Interrupted tasks that cannot reconstruct their executor are explicitly marked failed on restart instead of being reported as still running.

🔌 Official MCP Apps and Memory Center

v4.0.0 uses the official @modelcontextprotocol/ext-apps SDK and the stable io.modelcontextprotocol/ui extension.

  • MCP Apps are enabled by default and can be disabled with MCP_ENABLE_UI_APPS=0.

  • UI metadata and ui:// resources are exposed only after the client advertises support for text/html;profile=mcp-app.

  • Five stable Apps are included: Memory Center, Feature Workbench, Bug Workbench, Product Workbench, and Convergence Gate.

  • Memory Center uses a responsive master-detail layout for historical browsing, semantic search, full-content inspection, lifecycle state, evidence, stale marking, and confirmed deletion.

  • Feature and Bug Workbenches render a live plan stepper. The App polls resume_plan while visible, and progress advances only after the Agent records real step state through plan_heartbeat.

  • Product Workbench and Convergence Gate use the same developer-console design system for delivery paths, blockers, and evidence gaps.

  • list_memory_assets is an App-only action with _meta.ui.visibility=["app"]. It may appear in the raw tools/list response of an Apps-capable host, but compliant hosts must not offer it to the model. The model-visible count remains 24 by default or 30 with Memory.

  • Clients without MCP Apps support continue to receive the normal text and structuredContent responses; no GUI capability is required for existing workflows.

  • Trace metadata passthrough remains available through MCP_ENABLE_EXTENSIONS_CAPABILITY=1.

🧪 Tool and Real-Agent Contract Verification

# Deterministic server-side audit across compact, Memory, full, App-only, and Legacy surfaces
npm run audit:tools

# Optional real-host audit: Claude Code calls and evaluates all 34 model tools
npm run audit:tools:agent

The direct audit verifies non-empty readable text, structuredContent, and that every referenced MCP tool exists on the active surface. The real-Agent audit additionally checks whether an Agent understands each tool, can follow the returned guidance, sees no text/structured contradiction, and can execute the stated next step. It is intentionally separate from release:verify because it requires a configured Claude Code account and incurs model usage.

🧭 Delegated Orchestration Protocol

All start_* orchestration tools return an execution plan in structuredContent.metadata.plan.
AI needs to call tools step by step and persist files, rather than the tool executing internally.

Plan Schema (Core Fields):

{
  "mode": "delegated",
  "steps": [
    {
      "id": "spec",
      "tool": "add_feature",
      "args": { "feature_name": "user-auth", "description": "User authentication feature" },
      "outputs": ["docs/specs/user-auth/requirements.md"]
    }
  ]
}

Field Description:

  • mode: Fixed as delegated

  • steps: Array of execution steps

  • tool: Tool name (e.g. add_feature)

  • action: Manual action description when no tool (e.g. update_project_context)

  • args: Tool parameters

  • outputs: Expected artifacts

  • when/dependsOn/note: Optional conditions and notes

🧩 Structured Output Field Specification (Key Fields)

Both orchestration and atomic tools return structuredContent, common fields:

  • summary: One-line summary

  • status: Status (pending/success/failed/partial)

  • steps: Execution steps (orchestration tools)

  • artifacts: Artifact list (path + purpose)

  • metadata.plan: Delegated execution plan (only start_*)

  • specArtifacts: Specification artifacts (start_feature)

  • estimate: Estimation results (start_feature / estimate)

🧠 Requirements Clarification Mode (Requirements Loop)

When requirements are unclear, use requirements_mode=loop in start_feature / start_bugfix / start_ui.
This mode performs 1-2 rounds of structured clarification before entering spec/fix/UI execution.

Example:

{
  "feature_name": "user-auth",
  "description": "User authentication feature",
  "requirements_mode": "loop",
  "loop_max_rounds": 2,
  "loop_question_budget": 5
}

🧩 Template System (Regular Model Friendly)

add_feature supports template profiles, default auto auto-selects: prefers guided when requirements are incomplete (includes detailed filling rules and checklists), selects strict when requirements are complete (more compact structure, suitable for high-capability models or archival scenarios).

Example:

{
  "description": "Add user authentication feature",
  "template_profile": "auto"
}

Applicable Tools:

  • start_feature passes template_profile to add_feature

  • start_bugfix / start_ui also support template_profile for controlling guidance strength (auto/guided/strict)

Template Profile Strategy:

  • guided: Less/incomplete requirements info, regular model priority

  • strict: Requirements structured, prefer more compact guidance

  • auto: Default recommendation, auto-selects guided/strict

Parent-Child Specifications

For version-level or epic work, start_feature defaults to spec_layout: "auto" and selects parent-child when the requirement spans multiple modules, stages, or capability domains. If child boundaries are not known yet, the delegated plan first returns a decompose-spec step. You can still explicitly pass flat or parent-child; add_feature remains an atomic tool and defaults to flat unless the layout and subspecs are already defined. The MCP server returns templates and pendingFiles; the calling Agent creates the parent spec, spec-manifest.json, and child specs after review. check_spec then validates the complete hierarchy recursively.

start_feature uses query-only GitNexus narrowing with an 8-second degradation budget, so graph cold starts do not block specification planning. Automatic index refresh is disabled by default; set MCP_GITNEXUS_AUTO_REFRESH=1 when the MCP process should refresh the index before graph queries.

{
  "feature_name": "commerce-v2",
  "description": "Upgrade the commerce domain while preserving v1 compatibility",
  "spec_layout": "parent-child",
  "subspecs": [
    { "id": "01-foundation", "title": "Data foundation", "fr": ["FR-1"] },
    { "id": "06-inventory-ledger", "title": "Inventory ledger", "fr": ["FR-2"], "dependsOn": ["01-foundation"] }
  ]
}

🔄 Workflow Orchestration

6 intelligent orchestration tools that automatically combine multiple basic tools for one-click complex development workflows:

  • start_feature - New feature development (Requirements → Design → Estimation)

  • start_bugfix - Bug fixing (SRC-8 RCA → Fix → Testing)

  • start_onboard - Project onboarding (Generate project context docs)

  • start_ui - UI development (Design system → Components → Code)

  • start_product - Product design (PRD → Prototype → Design system → HTML)

  • start_ralph - Ralph Loop (Iterative development until goal completion)

🚀 Product Design Workflow

start_product is a complete product design orchestration tool, from requirements to interactive prototype:

Workflow:

  1. Requirements Analysis - Generate standard PRD (product overview, feature requirements, page list)

  2. Prototype Design - Generate detailed prototype docs for each page

  3. Design System - Generate design specifications based on product type

  4. HTML Prototype - Generate interactive prototype viewable in browser

  5. Project Context - Auto-update project documentation

Structured Output Additions:

  • start_product.structuredContent.artifacts: Artifact list (PRD, prototypes, design system, etc.)

  • interview.structuredContent.mode: usage / questions / record

🎨 UI/UX Pro Max

4 UI/UX tools with start_ui as the unified entry point:

  • start_ui - One-click UI development (supports intelligent mode) (orchestration tool)

  • ui_design_system - Intelligent design system generation

  • ui_search - UI/UX data search (BM25 algorithm)

  • sync_ui_data - Sync latest UI/UX data locally

Note: start_ui automatically calls ui_design_system and ui_search, you don't need to call them separately.

Inspiration:

Skill Bridge for UI/PRD workflows:

  • start_ui and start_product now include a Skill Bridge section in guidance and structuredContent.metadata.skills.

  • Recommended skill call order: ui-ux-pro-maxinteraction-designfrontend-design.

  • If some skills are missing, workflow continues with MCP main plan and marks unavailable skills in metadata.

Why use sync_ui_data?

Our start_ui tool relies on a rich UI/UX database (colors, icons, charts, components, design patterns, etc.) to generate high-quality design systems and code. This data comes from npm package uipro-cli, including:

  • 🎨 Color schemes (mainstream brand colors, color palettes)

  • 🔣 Icon libraries (React Icons, Heroicons, etc.)

  • 📊 Chart components (Recharts, Chart.js, etc.)

  • 🎯 Landing page templates (SaaS, e-commerce, government, etc.)

  • 📐 Design specifications (spacing, fonts, shadows, etc.)

Data Sync Strategy:

  1. Embedded Data: Synced at build time, works offline

  2. Background Auto Sync: Downloads latest data to ~/.mcp-probe-kit/ui-ux-data/ without changing current session output

  3. Next-Start Activation: Newly downloaded data is applied on next process start (keeps current session deterministic)

  4. Manual Sync: Use sync_ui_data to force refresh cache immediately (still applies next start by default)

This ensures start_ui can generate professional-grade UI code even offline.

🎤 Requirements Interview

2 interview tools to clarify requirements before development:

  • interview - Structured requirements interview

  • ask_user - AI proactive questioning


🧭 Tool Selection Guide

When to use orchestration tools vs individual tools?

Use orchestration tools (start_*) when:

  • ✅ Need complete workflow (multiple steps)

  • ✅ Want to automate multiple tasks

  • ✅ Need to generate multiple artifacts (docs, code, tests, etc.)

Use individual tools when:

  • ✅ Only need specific functionality

  • ✅ Already have project context docs

  • ✅ Need more fine-grained control

Common Scenario Selection

Scenario

Recommended Tool

Reason

Develop new feature (complete flow)

start_feature

Auto-complete: spec→estimation

Only need feature spec docs

add_feature

More lightweight, only generates docs

Fix bug (complete flow)

start_bugfix

Delegated SRC-8 plan (src8-1~8) → fix → test → memorize

Only need bug analysis

fix_bug

Delegated SRC-8 plan + root-cause worksheet (methodology: docs)

Generate design system

ui_design_system

Directly generate design specs

Develop UI components

start_ui

Complete flow: design→components→code

Product design (requirements to prototype)

start_product

One-click: PRD→prototype→HTML

One-sentence requirement analysis

init_project

Generate complete project spec docs

Project onboarding docs

init_project_context

Generate tech stack/architecture/conventions


🚀 Quick Start

No installation needed, use the latest version directly.

Cursor / Cline Configuration

Config file location:

  • Windows: %APPDATA%\Cursor\User\globalStorage\saoudrizwan.claude-dev\settings\cline_mcp_settings.json

  • macOS: ~/Library/Application Support/Cursor/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json

  • Linux: ~/.config/Cursor/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json

Config content:

{
  "mcpServers": {
    "mcp-probe-kit": {
      "command": "npx",
      "args": ["-y", "mcp-probe-kit@4.0.0"]
    }
  }
}

Skill & AGENTS auto-bootstrap (v3.6.3+): Every MCP tool call writes .agents/skills/mcp-probe-kit/SKILL.md and merges the mcp-probe:context block into AGENTS.md. Workspace root is auto-detected (Cursor injects WORKSPACE_FOLDER_PATHS; OpenCode project opencode.json sets cwd). No per-client MCP_PROJECT_ROOT unless global MCP cannot resolve the workspace — then set MCP_PROJECT_ROOT or pass project_root in tool args.

Multi-harness adapters (v3.6.8+): AGENTS.md and the canonical Skill stay the single rule source. If the project already has .trae/, .lingma/, .comate/, .codebuddy/, or .claude/, matching thin adapters (skill mirror or rules pointer) are written automatically — no env vars.

Version-locked CLI fallback (v4.0.0+): Bootstrap also writes .mcp-probe-kit/bin/probe.cmd|probe.ps1|probe and .mcp-probe-kit/runtime.json. If a modified host or third-party Agent provider connects the MCP server but omits its tools from the Agent session, the generated Skill and Cursor rule instruct the Agent to invoke the same Tool Registry through the project wrapper. The wrapper pins the exact MCP package version, does not install globally, and does not modify the project's package.json.

Memory for CLI fallback: install-agent also creates .mcp-probe-kit/local.env (and local.env.example). The CLI fallback path (probe.* exec ...) does not inherit IDE mcp.json env; edit local.env with the same MEMORY_* keys.

Direct CLI examples:

# JSON from stdin is the most portable option
printf '%s' '{"intent":"build a task board","scenario":"feature","project_root":"."}' \
  | ./.mcp-probe-kit/bin/probe exec workflow --stdin

# Repair or install the project wrappers without a working MCP tool lease
npx --yes mcp-probe-kit@<exact-version> install-agent --project-root .

Claude Desktop Configuration

Config file location:

  • Windows: %APPDATA%\Claude\claude_desktop_config.json

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

  • Linux: ~/.config/Claude/claude_desktop_config.json

Config content:

{
  "mcpServers": {
    "mcp-probe-kit": {
      "command": "npx",
      "args": ["-y", "mcp-probe-kit@4.0.0"]
    }
  }
}

OpenCode Configuration

Config file location:

  • Project-level: opencode.json (in project root)

  • Global: ~/.config/opencode/opencode.json

Config content:

{
  "mcp": {
    "mcp-probe-kit": {
      "type": "local",
      "command": ["npx", "-y", "mcp-probe-kit@4.0.0"],
      "enabled": true
    }
  }
}

Note: OpenCode uses opencode.json with a different schema from Cursor/Claude Desktop. The key mcp replaces mcpServers, command is an array, type: "local" is required, and environment variables use environment instead of env. See OpenCode MCP docs for details.

Method 2: Global Installation

npm install -g mcp-probe-kit

Use in config file:

{
  "mcpServers": {
    "mcp-probe-kit": {
      "command": "mcp-probe-kit"
    }
  }
}

Optional Memory System Setup

If you want to use memorize_asset, update_memory_asset, read_memory_asset, delete_memory_asset, and scan_and_extract_patterns, configure as follows:

  • Qdrant only (MEMORY_QDRANT_URL): read_memory_asset, delete_memory_asset

  • Qdrant + embedding (all three MEMORY_* write/search vars): search_memory, memorize_asset, update_memory_asset

  • No memory backend: scan_and_extract_patterns (local scan only; persist via memorize_asset when ready)

For full write/search you need both:

  1. A Qdrant vector database

  2. An embedding service in either ollama or openai-compatible mode

Note (CLI fallback): If you run the project wrapper (./.mcp-probe-kit/bin/probe* exec ...) instead of native MCP, Memory env is read from .mcp-probe-kit/local.env (created by install-agent).

Full guide (Docker Compose for Qdrant + Infinity, ports 50008 / 50012, MCP env, smoke tests):

Lightweight local stack; no Ollama. Deploy Qdrant and nomic-embed via Docker Compose (see guide), then:

{
  "mcpServers": {
    "mcp-probe-kit": {
      "command": "npx",
      "args": ["-y", "mcp-probe-kit@4.0.0"],
      "env": {
        "MEMORY_QDRANT_URL": "http://127.0.0.1:50008",
        "MEMORY_QDRANT_API_KEY": "your-qdrant-api-key",
        "MEMORY_QDRANT_COLLECTION": "mcp_probe_memory",
        "MEMORY_EMBEDDING_PROVIDER": "openai-compatible",
        "MEMORY_EMBEDDING_URL": "http://127.0.0.1:50012/embeddings",
        "MEMORY_EMBEDDING_MODEL": "nomic-ai/nomic-embed-text-v1.5",
        "MEMORY_EMBEDDING_API_KEY": "your-infinity-api-key",
        "MEMORY_SEARCH_LIMIT": "3",
        "MEMORY_SUMMARY_MAX_CHARS": "280"
      }
    }
  }
}

Embedding URL must be /embeddings (not /v1/embeddings). Qdrant requires api-key when QDRANT__SERVICE__API_KEY is set.

Option B: Qdrant + Ollama

docker run -d --name mcp-qdrant -p 6333:6333 qdrant/qdrant
ollama pull nomic-embed-text
"MEMORY_QDRANT_URL": "http://127.0.0.1:6333",
"MEMORY_EMBEDDING_PROVIDER": "ollama",
"MEMORY_EMBEDDING_URL": "http://127.0.0.1:11434/api/embeddings",
"MEMORY_EMBEDDING_MODEL": "nomic-embed-text"

Option C: Qdrant + hosted OpenAI-compatible API

"MEMORY_QDRANT_URL": "http://127.0.0.1:50008",
"MEMORY_EMBEDDING_PROVIDER": "openai-compatible",
"MEMORY_EMBEDDING_URL": "https://your-embedding-endpoint/v1/embeddings",
"MEMORY_EMBEDDING_API_KEY": "your-api-key",
"MEMORY_EMBEDDING_MODEL": "text-embedding-3-small"

Memory Environment Variables

  • MEMORY_QDRANT_URL: Qdrant base URL, required for all memory features

  • MEMORY_QDRANT_API_KEY: Optional Qdrant API key

  • MEMORY_QDRANT_COLLECTION: Collection name, default mcp_probe_memory

  • MEMORY_EMBEDDING_PROVIDER: ollama or openai-compatible

  • MEMORY_EMBEDDING_URL: Embedding endpoint URL

  • MEMORY_EMBEDDING_API_KEY: Optional for Ollama, usually required for hosted OpenAI-compatible providers

  • MEMORY_EMBEDDING_MODEL: Default is nomic-embed-text

  • MEMORY_SEARCH_LIMIT: Default search result count is 3

  • MEMORY_SUMMARY_MAX_CHARS: Default summary truncation length is 280

Notes

  • Memory write capability is enabled only when MEMORY_QDRANT_URL, MEMORY_EMBEDDING_URL, and MEMORY_EMBEDDING_MODEL are configured

  • Memory read capability only requires MEMORY_QDRANT_URL

  • Qdrant collections are auto-created on first write with Cosine distance

  • Vector size is inferred from the first embedding response

GitNexus Managed Runtime

Applies to code_insight, start_feature, start_bugfix, and init_project_context.

GitNexus is not bundled into the mcp-probe-kit npm tarball because it includes native, platform-specific dependencies and uses the PolyForm Noncommercial license. The runtime policy is:

  1. Use MCP_GITNEXUS_COMMAND when explicitly configured.

  2. Otherwise reuse an already validated managed Sidecar from the mcp-probe-kit user cache.

  3. Otherwise use a compatible gitnexus CLI already available on PATH.

  4. If no runtime is installed, graph analysis degrades immediately instead of blocking the main workflow. The Agent can run doctor gitnexus --install and retry automatically.

Validated compatibility:

Node.js

Managed GitNexus

20-21

Managed Sidecar disabled; use a system GitNexus CLI or degraded mode

22+ / Windows、macOS、Linux

1.6.9

Each managed installation is isolated by GitNexus version, operating system, CPU architecture, and Node.js major version. npm integrity is checked against the pinned release metadata before the runtime is accepted. The installer then runs gitnexus doctor plus a real TypeScript indexing probe and rejects any runtime that silently disables FTS/BM25 search.

Install or repair the managed Sidecar through the project launcher:

# Windows
& ./.mcp-probe-kit/bin/probe.cmd doctor gitnexus --install
# macOS / Linux
./.mcp-probe-kit/bin/probe doctor gitnexus --install

The first installation can take several minutes because GitNexus includes native parsers, LadybugDB, ONNX Runtime, and post-install grammar builds. It runs outside the project and does not modify the project package.json or node_modules.

Available modes:

  • MCP_GITNEXUS_MODE=auto — default; explicit/system/existing managed runtime, otherwise fast degradation.

  • MCP_GITNEXUS_MODE=managed — require the managed Sidecar and allow installation during the graph request.

  • MCP_GITNEXUS_MODE=system — use only explicit/system GitNexus; never install.

  • MCP_GITNEXUS_MODE=off — disable GitNexus.

  • MCP_GITNEXUS_AUTO_INSTALL=1 — allow auto mode to install synchronously; not recommended for latency-sensitive clients.

Some GitNexus dependencies use native modules. On Windows, LadybugDB FTS also requires the OpenSSL runtime shipped with Git for Windows; mcp-probe-kit discovers its mingw64/bin directory and exposes it only to the managed child process. Set MCP_GITNEXUS_WINDOWS_RUNTIME_BIN to an equivalent directory when Git is installed in a nonstandard location. A failed prebuilt-binary download may still require Visual Studio Build Tools with the C++ workload. Installation failure never prevents the mcp-probe-kit workflow from continuing in degraded mode.

Example config using a preinstalled gitnexus CLI:

{
  "mcpServers": {
    "mcp-probe-kit": {
      "command": "mcp-probe-kit",
      "env": {
        "MCP_GITNEXUS_MODE": "system",
        "MCP_GITNEXUS_COMMAND": "gitnexus",
        "MCP_GITNEXUS_ARGS": "mcp",
        "MCP_GITNEXUS_CONNECT_TIMEOUT_MS": "30000",
        "MCP_GITNEXUS_TIMEOUT_MS": "45000"
      }
    }
  }
}

Restart Client

After configuration, completely quit and reopen your MCP client.

👉 Detailed Installation Guide


💡 Usage Examples

Daily Development

code_review @feature.ts    # Code review
gentest @feature.ts         # Generate tests
gencommit                   # Generate commit message

New Feature Development

start_feature user-auth "User authentication feature"
# Auto-complete: Requirements analysis → Design → Effort estimation

Bug Fixing

start_bugfix
# Then paste error message
# Auto-complete: Problem location → Fix solution → Test code

Product Design

start_product "Online Education Platform" --product_type=SaaS
# Auto-complete: PRD → Prototype → Design system → HTML prototype

UI Development

start_ui "Login Page" --mode=auto
# Auto-complete: Design system → Component generation → Code output

Project Context Documentation

# Single file mode (default) - Generate a complete project-context.md
init_project_context

# Modular mode - Generate 6 category docs (suitable for large projects)
init_project_context --mode=modular
# Generates: project-context.md (index) + 5 category docs

Git Work Report

# Generate daily report
git_work_report --date 2026-02-03

# Generate weekly report
git_work_report --start_date 2026-02-01 --end_date 2026-02-07

# Save to file
git_work_report --date 2026-02-03 --output_file daily-report.md
# Auto-analyze Git diff, generate concise professional report
# If direct command fails, auto-provides temp script solution (auto-deletes after execution)

👉 More Usage Examples


❓ FAQ

Q1: Tool not working or errors?

Check detailed logs:

Windows (PowerShell):

npx -y mcp-probe-kit@4.0.0 2>&1 | Tee-Object -FilePath .\mcp-probe-kit.log

macOS/Linux:

npx -y mcp-probe-kit@4.0.0 2>&1 | tee ./mcp-probe-kit.log

Q2: Client not recognizing tools after configuration?

  1. Restart client (completely quit then reopen)

  2. Check config file path is correct

  3. Confirm JSON format is correct, no syntax errors

  4. Check client developer tools or logs for error messages

Q2b: Cursor shows connected but 0 tools / Agent says No MCP servers available?

This is a known Cursor-side issue: stderr may report a valid compact tool surface, while Mcp FileSystem Writer shows lease returned 0 tools and toolCount=0 — the Agent lease layer silently dropped the tool list.

Common causes:

Symptom in logs

Likely cause

tools/list ≈ 50+ KB then lease returned 0 tools

Cursor internal payload size limit (whole list dropped silently)

latched shared-process MCP routing disabled + ipcReady timeout

Windows mcpProcess utility failed; legacy fallback discovers tools but Agent lease stays empty

Settings green dot, Agent No MCP servers available

Renderer ↔ shared-process MCP routing not wired for this session

What we do: tools/list omits outputSchema by default, and v4.0.0 defaults to the 24-tool compact model surface. Structured output still works through structuredContent on tools/call. Restore output schemas with MCP_INCLUDE_OUTPUT_SCHEMA=1, or restore the 34-tool compatibility surface with MCP_TOOLSET=full.

What you can try:

  1. Reload MCP or fully quit Cursor (not just close window) and reopen

  2. Check Output → MCP for lease returned 0 tools / ipcReady / MessagePort

  3. In Composer, open the tools panel — ensure the server toggle is on (some versions default off)

  4. Upgrade Cursor (3.7.36+ had Windows ipcReady regressions; try latest or roll back to a known-good build)

  5. If still broken after server update, report to Cursor with: connected=true, stderr tool count, lease toolCount=0, and shared-process MCP routing disabled

Fallback when the Host Agent path is replaced or does not bridge MCP tools:

If the MCP panel and tool cache are healthy but the actual Agent request is handled by a third-party provider with no MCP tool bridge, restarting the server cannot fix that path. Use the project wrapper generated by bootstrap:

# Windows
'{"intent":"continue the current feature","scenario":"feature","project_root":"."}' |
  .\.mcp-probe-kit\bin\probe.cmd exec workflow --stdin
# macOS / Linux
printf '%s' '{"intent":"continue the current feature","scenario":"feature","project_root":"."}' \
  | ./.mcp-probe-kit/bin/probe exec workflow --stdin

The Skill automatically selects this route when native MCP tools are absent. plan_heartbeat, resume_plan, and converge use the same project files across separate CLI processes and native MCP sessions.

Diagnostic: .cursor/projects/<project>/mcps/user-mcp-probe-kit/

This folder is written by Cursor (Mcp FileSystem Writer), not by mcp-probe-kit. After a successful tool lease you should see:

mcps/user-mcp-probe-kit/
├── SERVER_METADATA.json
├── STATUS.md
├── tools/           ← one JSON per model-visible tool (~24 by default); Agent reads these for CallMcpTool
│   ├── init_project.json
│   └── ...
└── resources/       ← from resources/list (may exist even when tools/ is empty)

State

Meaning

resources/ exists, tools/ missing or empty

resources/list OK but tools lease failed (matches lease returned 0 tools)

tools/ has fewer entries than the selected model surface (24 default, 30 with Memory, 34 full)

Partial write or session interrupted; Reload MCP

STATUS.md says server errored

Cursor marked the server unhealthy for Agent even if Settings is green

Healthy session: tools/ should auto-populate within seconds of MCP connect — no manual setup, no repo config.

Q3: How to update to latest version?

npx method (Recommended): Use @latest tag in config, automatically uses latest version.

Global installation method:

npm update -g mcp-probe-kit

Q4: Why can the first GitNexus installation take a long time?

GitNexus includes native parsers, a graph database, ONNX Runtime, and post-install grammar builds. A cold managed installation may take several minutes, especially on Windows or a slow network.

The normal feature and bug-fix workflows do not wait for this installation in default auto mode. They return a structured managed_install_required degradation result, and the Agent can automatically run:

& ./.mcp-probe-kit/bin/probe.cmd doctor gitnexus --install

The installation is stored in the mcp-probe-kit user cache, uses an exact compatible version and npm integrity pin, and does not modify the business project. If native installation fails, graph analysis remains degraded while the rest of the workflow continues normally.

👉 More FAQ


🤝 Contributing

Issues and Pull Requests welcome!

Improvement suggestions:

  • Add useful tools

  • Optimize existing tool prompts

  • Improve documentation and examples

  • Fix bugs


📄 License

MIT License


Related Projects:


Made with ❤️ for AI-Powered Development


Acknowledgements

Thanks to the Linux.do community for its support in promoting the project and providing feedback.

Available Tools

24 tools
architectureA
Read-only

独立架构领域能力,使用 ARC-8 完成架构评估、设计、校验和漂移检查。可直接调用,也可由功能、Bug 或重构流程按需组合;MCP 负责方法、门禁与结构化证据,不替 Agent 声称绝对最优架构。

ParametersJSON Schema
NameRequiredDescriptionDefault
diffNovalidate/drift 使用的真实 Git diff、revision 摘要或实现证据
modeNoARC-8 入口阶段:assess、design、validate 或 drift,默认 assess
scopeNo涉及模块、目录、服务或数据域
baselineNo已有 assess 结果、ADR、ArchitectureCandidate、Plan 或设计证据;可传对象或 JSON/文本
decisionNo
non_goalsNo本次明确不处理的内容
constraintsNo已确认的业务与技术约束
descriptionYes本次架构任务的完整目标,不能只传“继续”或“优化架构”
alternativesNo
project_rootNo目标项目根目录绝对路径
save_to_docsNo是否返回架构文档 delegated 落盘计划;工具本身不直接重写项目文档
current_factsNo当前架构事实,需标记 fact/inference/unknown
observed_driftNoAgent 已确认的架构偏移事实
transition_planNo
collect_evidenceNo是否自动调用 code_insight 并召回 Memory 证据,默认 true;测试或已提供完整证据时可设 false
runtime_evidenceNo运行结果、图谱摘要、日志、指标或验收证据
structural_causesNo
target_architectureNo
protected_invariantsNo

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations declare readOnlyHint=true and openWorldHint=true. The description adds key behavioral context: 'MCP 负责方法、门禁与结构化证据,不替 Agent 声称绝对最优架构。' This clarifies that the tool does not guarantee optimal architecture, providing important limitations. It also implies structured evidence gathering and gating. No contradictions detected.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely concise: two sentences that cover purpose, usage modes, composition guidance, and behavioral disclaimer. Every sentence provides unique value. There is no redundancy. It is front-loaded with the core purpose and then adds nuance. Perfect for a tool with many parameters that need schema-level documentation.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity (19 parameters, nested objects, no output schema), the description does not explain return values or the overall process of ARC-8. However, it sets appropriate expectations by stating the tool provides '方法、门禁与结构化证据'. For a highly complex architecture tool, a 4 is suitable as it covers intent and limitations without over-specifying internal details.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 68%, meaning many parameters have descriptions. The description adds value by framing the overall purpose and the mode parameter as the entry point. However, many parameters (e.g., 'diff', 'baseline', 'decision') have schema descriptions that already explain them. The description does not deeply elaborate on these, but given moderate coverage, a 4 is justified for reinforcing the context without repeating schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: '独立架构领域能力,使用 ARC-8 完成架构评估、设计、校验和漂移检查。' It specifies the verb ('架构推理与变更'), resource ('架构'), and the four modes (assess, design, validate, drift). This distinguishes it from siblings like 'code_review' or 'code_insight' which focus on code-level aspects, not architecture-level reasoning.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description says '可直接调用,也可由功能、Bug 或重构流程按需组合', indicating when to call it directly versus compose within workflows. It doesn't explicitly exclude cases or name alternatives, but hints at composition with other flows. A 4 is appropriate because it provides clear context for usage but lacks explicit when-not-to-use or alternative tool mentions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

check_specA
Read-onlyIdempotent

校验已落盘的功能规格(docs/specs//requirements|design|tasks.md)是否完整:检测残留 [填写] 占位、缺失章节、缺 FR/验收标准、FR 未进覆盖矩阵。写完规格后、进入实现前调用;未通过按报告补全后重跑。

ParametersJSON Schema
NameRequiredDescriptionDefault
docs_dirNo文档根目录,默认为 docs
feature_nameNo要校验的规格目录名,对应 docs/specs/<feature_name>/
project_rootNo可选。项目根目录绝对路径;未传时自动从 MCP 客户端工作区解析(如 Cursor 注入 WORKSPACE_FOLDER_PATHS、OpenCode/客户端配置的 cwd 等)。仅边缘场景需手动传入。

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already state readOnlyHint and idempotentHint, so the safety profile is covered. The description adds value by detailing what the validation checks (placeholder, missing sections, etc.) and implying a report output. No contradiction with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, well-structured sentence that front-loads the purpose, includes the validation scope, and embeds usage timing. No superfluous words or repetition.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a read-only validation tool with no output schema, the description covers the essential context: what is checked, when to use it, and the follow-up action. It could benefit from mentioning the report format or exit behavior, but it is sufficient for correct invocation. The rich annotations compensate for missing details.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, with each parameter already documented (e.g., feature_name pattern, project_root auto-detection). The description reinforces the feature_name path pattern but does not add substantial new semantics beyond the schema. Baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states a specific verb (校验) and resource (功能规格 docs/specs/<feature_name>/requirements|design|tasks.md), and lists exact validation checks (placeholder detection, missing sections, FR/acceptance criteria, FR coverage). This distinguishes it from all sibling tools, which focus on coding, review, or memory tasks.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly states when to call (写完规格后、进入实现前) and the rerun loop (未通过按报告补全后重跑). It provides clear contextual guidance, though it does not explicitly mention when not to use it or name alternative tools. The when-to-use is strong enough for a 4.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

code_insightA
Read-only

当用户需要基于代码图谱分析调用链、上下文和影响面时使用。默认桥接 GitNexus,支持 query/context/impact 模式;不可用时自动降级并返回原因

ParametersJSON Schema
NameRequiredDescriptionDefault
goalNo分析目标(可选)
modeNo分析模式:auto(默认)、query、context、impact
repoNo仓库名称(多仓库场景可选)
queryNo查询文本(query 模式推荐)
targetNo目标符号(context/impact 模式推荐)
directionNoimpact 方向:upstream / downstream
max_depthNoimpact 最大深度(可选,默认 3)
project_rootNo项目根目录绝对路径。建议显式传入;当调用里还包含相对路径参数时,应统一相对该项目根目录解析,避免依赖客户端 cwd。
task_contextNo任务上下文(可选)
include_testsNoimpact 是否包含测试文件(可选,默认 false)

TDQS

A4.1/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, indicating a safe read operation. The description adds details on multiple analysis modes, default backend, and automatic degradation with error reporting, providing useful behavioral context beyond annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely concise, using two sentences to convey purpose, modes, and fallback behavior. Every word serves a purpose without redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

While the high-level purpose is clear, the description does not explain the return value or output format. Given the complexity (10 parameters, 4 modes) and no output schema, some indication of what the user gets would improve completeness.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3. The description does not add additional parameter-level meaning; the schema already describes each parameter adequately.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: analyzing call chains, context, and impact using a code graph. It specifies the modes (query/context/impact) and the default backend (GitNexus), making it distinct from siblings like code_review.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly states when to use this tool (when analyzing code graph relationships) and mentions auto-degradation when unavailable. It does not provide explicit exclusions or alternatives, but the context is clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

code_reviewA
Read-onlyIdempotent

当用户需要审查代码、真实 Git diff 或托管 Plan 的交付一致性时使用。MCP 可确定性收集 changed files、Plan 声明范围、产物、测试、公共契约、架构和 revision 证据;代码语义问题仍由 Agent 审查,不伪装成静态扫描器

ParametersJSON Schema
NameRequiredDescriptionDefault
codeNo要审查的代码。可以是代码片段、完整文件或 git diff 输出
focusNo审查重点:security(安全)、performance(性能)、quality(质量)、all(全部)。可选,默认 all
plan_idNo可选托管 Plan ID。提供后读取 Plan 状态并比较 declaredScope、产物、测试、架构证据和 revision
base_refNodiff_mode=range 时的基线 Git ref
head_refNodiff_mode=range 时的目标 Git ref
diff_modeNoGit diff 范围。auto 默认审查相对 HEAD 的 staged+unstaged 变更;working 仅未暂存;staged 仅已暂存;range 使用 base_ref/head_ref
file_pathNo要审查的文件路径(相对 project_root 或绝对路径)。未传 code 时从磁盘读取
project_rootNo项目根目录绝对路径。未传 code/file_path 时,可从该 Git 仓库自动收集真实 diff
max_diff_charsNo最大 diff 字符数,1000-500000,默认 120000。超出时明确标记 truncated

TDQS

A4.1/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

注释已声明readOnlyHint和idempotentHint,描述在此基础上补充了'确定性收集 changed files、Plan声明范围、产物、测试、公共契约、架构和revision证据,代码语义问题由Agent审查',揭示了工具的行为边界和非侵入性,未与注释矛盾。

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

描述仅两句话,第一句点明目的,第二句解释行为边界,无废话。结构紧凑,信息前置,非常高效。

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

工具较复杂(9参数,无输出模式),描述覆盖了适用场景和行为边界,但未说明输出格式或返回内容。缺少输出说明使得完整性不足,但Schema已完整描述参数,基本可用。

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema描述覆盖率为100%,所有9个参数已在输入模式中详细说明。描述未添加任何参数相关的内容,因此按照规则基线3分。

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

描述明确使用'当用户需要审查代码、真实 Git diff 或托管 Plan 的交付一致性时使用',具体指出了三种适用场景,动词'审查'配合资源'代码/diff/Plan'。进一步说明工具职责边界(收集证据,不伪装静态扫描器),与兄弟工具code_insight等自然区分。

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

描述直接给出了使用条件(审查代码、diff、Plan一致性),提供了清晰的上下文。但未明确罗列何时不适合使用,也未提及兄弟工具作为替代,因此无法达到最高分。

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

convergeA
Idempotent

按 Delegated Plan 自己声明的证据和质量闸门关闭计划。任一未完成步骤、未决事项、必需证据或验收结果缺失都会拒绝收敛;除 requirements 外,证据只有摘要但没有 reference/revision 也不算可复核证据。调用参数只能增加证据要求,不能削弱 Plan。

ParametersJSON Schema
NameRequiredDescriptionDefault
plan_idYes
docs_dirNo规格目录,默认 docs
feature_nameNo可选;提供后 converge 会真实调用 check_spec
project_rootNo
required_evidence_kindsNo可选附加要求;与 Plan.requiredEvidenceKinds 合并,不能移除 Plan 已声明要求

TDQS

A4.5/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description adds significant behavioral context beyond annotations: it clarifies that evidence without reference/revision is not reviewable, explains rejection conditions, and states the monotonic nature of evidence requirements. This complements the annotations (idempotentHint=true, destructiveHint=false) by detailing exactly what the tool checks and rejects, without contradiction.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded paragraph of three sentences. Every sentence adds essential information: the core function, rejection criteria, and parameter constraint. There is no redundancy or filler, achieving high density of useful guidance.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool has 5 parameters, no output schema, and moderate complexity. The description covers behavior and constraints well but fails to specify what the tool returns on success (e.g., confirmation, next steps) or any side effects. Given the absence of an output schema, these gaps reduce completeness for an agent invoking the tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 60% schema coverage, the description compensates by explaining parameter behavior for 'required_evidence_kinds' (only additive, not removing) and 'feature_name' (triggers check_spec call). While 'docs_dir' and 'project_root' are not elaborated, the description adds meaningful constraints beyond the schema, earning above baseline.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: to close a Delegated Plan by verifying its declared evidence and quality gates. It uses specific verbs ('收敛' meaning converge/close) and identifies the resource ('Delegated Plan'). This distinguishes it from sibling tools like plan_heartbeat (status check) and resume_plan (resume), making selection unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides strong usage context by detailing conditions for rejection (incomplete steps, missing evidence) and the constraint that parameters can only add evidence requirements, not weaken the Plan. While it does not explicitly name alternative tools, it implicitly advises using converge only when all gate criteria are met. The guidance is clear and actionable.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

estimateA
Read-onlyIdempotent

当用户需要估算开发工作量、评估任务时间时使用。估算开发工作量,输出故事点、时间范围(乐观/正常/悲观)、风险点

ParametersJSON Schema
NameRequiredDescriptionDefault
team_sizeNo团队规模(人数)。可选,默认为 1
code_contextNo相关代码或文件上下文。可选,有助于更准确的估算
experience_levelNo经验水平:junior(初级)、mid(中级)、senior(高级)。可选,默认为 mid
task_descriptionNo任务描述。可以是简短的自然语言(如'估算开发工作量')或详细的任务说明

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate readOnlyHint=true and idempotentHint=true, so the tool's safe, non-destructive nature is covered. The description adds value by stating the outputs (故事点、时间范围、风险点), giving agents insight into what they can expect. No contradictions with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences long: the first states the usage trigger, and the second summarizes outputs. Every word is purposeful with no redundancy or filler. Front-loaded with the most critical information (when to use).

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with 4 optional parameters and no output schema, the description covers the core purpose, usage context, and output types. It could be improved by mentioning that all parameters are optional or by providing a hint about the output structure (e.g., how risk points are represented), but it is largely complete for an estimation tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, meaning structured descriptions already exist for all four parameters. The tool description does not add any additional meaning beyond the schema, such as explaining how 'experience_level' affects estimation or the relationship between 'team_size' and output ranges. Baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description explicitly states the tool's purpose: estimating development workload and task time. It specifies outputs (story points, time ranges, risk points) and the action verb '估算' (estimate) plus resource '开发工作量' (development workload). This clearly distinguishes it from siblings like 'plan_heartbeat' or 'init_project', which are not estimation-focused.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description starts with '当用户需要估算开发工作量、评估任务时间时使用' (use when user needs to estimate development workload or assess task time), providing a clear usage context. However, it does not explicitly mention when not to use this tool or compare it to sibling tools, leaving some ambiguity for alternative selection.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

gencommitA
Read-onlyIdempotent

当用户需要生成 Git commit 消息时使用。返回 Conventional Commits 规范说明、步骤、输出模板和示例,供 AI 根据变更内容生成最终 commit message。它不直接代写最终消息,也不应被判定为空结果

ParametersJSON Schema
NameRequiredDescriptionDefault
typeNoCommit 类型:fixed(修复)、feat(新功能)、docs(文档)、style(样式)、chore(杂项)、refactor(重构)、test(测试)。可选,会自动识别
changesNo代码变更内容。可以是 git diff 输出、变更描述或自然语言。如果不提供,工具会提示执行 git diff
project_rootNo可选,目标 Git 仓库根目录或其子目录。未提供 changes 时用于确认当前项目确实是 Git 仓库

TDQS

A3.8/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

已有注释标明 readOnlyHint=true 和 idempotentHint=true,描述进一步补充了工具的具体行为:返回规范说明、步骤、模板和示例,不直接写入最终消息,并提示不应该被当作空结果。两者一致,无矛盾,且提供了额外上下文。得 4 分。

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

仅用两句话清晰表达了目的、输入、输出和行为约束,信息密度高且前置关键内容,没有冗余。得满分 5 分。

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

说明了返回值(规范、步骤、模板、示例),也提示了未提供 changes 时的行为(在参数 schema 中说明)。缺少输出 schema,但描述已涵盖关键信息。在兄弟工具较多的情况下,整体完整度较好,得 4 分。

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

所有三个参数的 schema 描述覆盖率是 100%,描述本身没有再重复参数细节。根据规则,高覆盖率下基数为 3 分,且描述未新增参数含义,因此得 3 分。

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

明确说明用于“生成 Git commit 消息”,并指明返回规范说明、步骤、模板和示例。描述中指出了工具的行为边界(不直接代写最终消息),但未明确与兄弟工具(如 git_work_report)区分,因此为 4 分。

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

指出了使用场景(需要生成 commit 消息时),并澄清了工具不直接写入消息、不应被判断为空结果。但没有明确说明何时不适合使用,也未列出替代工具。因此得 3 分。

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

gentestA
Read-onlyIdempotent

当用户需要为代码生成单元测试时使用。指南型工具:注入 code/file_path 与测试清单,由 Agent 生成完整测试代码;MCP 不自动生成或运行测试

ParametersJSON Schema
NameRequiredDescriptionDefault
codeNo要生成测试的代码。可以是函数、类或模块
file_pathNo要生成测试的源文件路径(相对 project_root 或绝对路径)。未传 code 时从磁盘读取
frameworkNo测试框架:jest、vitest、mocha。可选,会自动识别项目使用的框架
project_rootNo项目根目录绝对路径。配合 file_path 解析相对路径

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description adds behavioral context beyond the annotations (readOnlyHint, idempotentHint) by clarifying that it is a '指南型工具' (guide-type tool) where 'MCP 不自动生成或运行测试' (MCP does not automatically generate or run tests) and '由 Agent 生成完整测试代码' (the agent generates complete test code). This explains the tool's role as a guide, not a direct executor. No contradiction with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is exceptionally concise: two sentences, front-loaded with the purpose, and every sentence provides essential information. No unnecessary words or repetition.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the 100% schema coverage, no output schema, and no nested objects, the description adequately covers the tool's purpose and behavior. It explains the guide nature and the agent's role. A minor gap is the lack of information about the return value or output, but this is mitigated by the readOnlyHint and the description's clarity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3. The tool description does not add any parameter-specific information beyond what the schema already provides. The mention of '注入 code/file_path 与测试清单' is too vague to add meaningful semantics.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: '当用户需要为代码生成单元测试时使用' (use when user needs to generate unit tests for code). It specifies the verb (generate), resource (unit tests), and distinguishes from sibling tools like code_review or refactor by being exclusively for test generation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly states the usage condition: '当用户需要为代码生成单元测试时使用' (use when user needs to generate unit tests). It provides clear context but does not list when not to use or mention alternatives, which would be beneficial given the large sibling set.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

git_work_reportA
Read-onlyIdempotent

基于 Git diff 分析生成工作报告(日报/周期报)

核心功能:

  • 支持日报模式(单个日期)和周期报模式(日期范围)

  • 自动读取指定日期的所有 Git 提交

  • 对每个提交执行 git show 获取完整 diff

  • 使用 AI 分析 diff 内容提取实际工作内容

输出格式:

  • 只输出「工作内容」部分

  • 每条以 - 开头,中文,简洁专业

  • 格式:做了什么 + 改了哪里/达到什么效果

  • 不输出:提交哈希、文件列表、统计数据、风险总结

使用示例:

  • 日报:git_work_report --date 2026-1-27

  • 周期报:git_work_report --start_date 2026-2-1 --end_date 2026-2-6

ParametersJSON Schema
NameRequiredDescriptionDefault
dateNo单个日期,格式 YYYY-MM-DD(日报模式)
end_dateNo结束日期,格式 YYYY-MM-DD(周期报模式)
start_dateNo起始日期,格式 YYYY-MM-DD(周期报模式)
output_fileNo可选,输出文件路径
project_rootNo目标 Git 仓库根目录或其子目录;省略时按当前 MCP 工作区解析

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description discloses key behavioral traits: it reads Git diffs, uses AI to analyze content, and outputs only the 'work content' section. The annotations confirm readOnlyHint=true and idempotentHint=true, which aligns with the read-only behavior described. The description adds details about the output format and what is excluded, going beyond annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured with clear sections for core functionality, output format, and usage examples. It is concise for the amount of information conveyed, though some redundancy exists (e.g., both title and description mention 'Git 工作报告'). Each section adds value without unnecessary verbosity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's moderate complexity, 5 parameters with full schema coverage, no output schema, and read-only annotations, the description is complete. It explains the tool's mechanism, output format, and usage, leaving no obvious gaps for an agent to misinterpret. The lack of output schema is compensated by the explicit output format rules.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so baseline is 3. The description adds significant value by explaining the date/start_date/end_date parameters in natural language with usage examples, clarifying the two modes. It also explains project_root's fallback behavior ('按当前 MCP 工作区解析'), which is not in the schema description.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies the tool's purpose: generating work reports from Git diff analysis, for daily and periodic modes. It explicitly states the verb '生成' (generate) and the resource '工作报告' (work report), distinguishing it from siblings like 'gencommit' or 'code_review' which are related but different operations.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit usage contexts: daily mode (single date) and periodic mode (date range), with concrete examples. However, it does not explicitly state when NOT to use this tool or compare to alternatives like 'gencommit' for commit messages, though the context is clear from the sibling list.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

init_projectA
Idempotent

当用户提供一句话需求时使用。基于 Spec-Driven Development 理念,分析需求并生成完整的项目规格文档(需求分析/技术设计/任务拆解)。适合项目初期的需求澄清和规划

ParametersJSON Schema
NameRequiredDescriptionDefault
inputNo项目需求描述。可以是一句话需求(如'创建电商网站')或简短的功能描述,工具会自动分析并生成详细的规格文档
project_nameNo项目名称。可选,默认为'新项目'
project_rootNo可选。项目根目录绝对路径;未传时自动从 MCP 客户端工作区解析(如 Cursor 注入 WORKSPACE_FOLDER_PATHS、OpenCode/客户端配置的 cwd 等)。仅边缘场景需手动传入。 init_project 是新项目初始化入口:显式传入尚不存在的绝对路径时,会创建该目录并仅写入 MCP 托管的 Skill、AGENTS.md 与 CLI fallback 文件;文件系统根目录、用户家目录和系统目录会被拒绝。

TDQS

A3.6/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare idempotentHint=true and destructiveHint=false. The description adds behavioral context by stating the tool is based on 'Spec-Driven Development' and generates specific document types (需求分析/技术设计/任务拆解). The parameter description for `project_root` further details file creation behavior and path restrictions. This adds value beyond the annotations, though the description itself could be more explicit about side effects.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences long, front-loads the key use case, and contains no filler. Every sentence adds value: usage trigger, methodology, and output content. It is efficiently structured for quick comprehension.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description explains the tool's output type (specification document with sections) but does not specify the return format (e.g., file path, text content, or JSON). Since there is no output schema, the description should clarify what the tool returns to the caller. The parameter `project_root` is well-documented, but the overall completeness is lacking for a tool that generates documents without explicit output guidance.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% – all parameters have descriptions. The `input` parameter description explains the allowed format (one-sentence or short description), `project_name` provides a default value, and `project_root` has a detailed explanation of path resolution and edge cases. The tool description does not add parameter-specific information beyond what is already in the schema, so baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: '当用户提供一句话需求时使用' (use when user provides a one-sentence requirement) and '生成完整的项目规格文档' (generate complete project spec doc). It identifies the action (analyze requirement and generate documents) and context (initial project clarification). However, it does not explicitly differentiate from sibling tools like `init_project_context` or `start_product`, which could be confused for similar use cases.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description specifies when to use the tool ('当用户提供一句话需求时使用', '适合项目初期的需求澄清和规划'), providing clear context. However, it does not mention when not to use it or list alternative tools for different scenarios (e.g., `init_project_context` for adding context to existing projects). No explicit exclusions or guidance on choosing between this and similar tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

init_project_contextA
Idempotent

生成/更新项目上下文写作计划(delegated):MCP 写入 AGENTS.md 与 layout.json;project-context 分类文档与 graph-insights 由 Agent 按返回的 plan 落盘。新功能请先 start_feature,修 bug 请先 start_bugfix。

ParametersJSON Schema
NameRequiredDescriptionDefault
localeNoAGENTS.md 语言;默认根据 README 探测
outputNo高级:索引文件相对路径,如 AGENTS.md
docs_dirNo附属文档根目录(project-context、graph-insights)。默认 docs
filenameNo高级:与 output_dir 合用,默认 project-context.md
output_dirNo高级:索引所在目录,如 .claude/rules
index_styleNo索引风格:auto(默认 AGENTS.md)、agents、legacy(docs/project-context.md)

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations indicate idempotent and non-destructive. Description adds that the tool writes to specific files (AGENTS.md, layout.json) and delegates follow-up actions. Could be more explicit about side effects or overwrite behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise, front-loading the core action and directing use cases. It packs essential information without redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

While purpose and usage are clear, the description lacks details on the returned plan structure and how the agent should use it. With no output schema, more completeness would improve agent understanding.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with each parameter described. The description does not add additional semantic context beyond the schema, so baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool generates/updates project context writing plan, writing AGENTS.md and layout.json, and directs the agent to write associated documents. It distinguishes from sibling tools like start_feature and start_bugfix by indicating separate workflows.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly instructs when to use alternatives: for new features use start_feature, for bug fixes use start_bugfix. This provides clear context for tool selection.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

interviewB
Read-onlyIdempotent

当用户需求不明确、需要澄清需求时使用。需求访谈工具,在开发前通过结构化提问澄清需求,避免理解偏差和返工;生成访谈记录文件供后续 start_feature/add_feature 使用;仅支持 feature 类型

ParametersJSON Schema
NameRequiredDescriptionDefault
answersNo访谈问题的回答(JSON 对象,key 为问题 ID,value 为回答内容)。用于提交访谈结果
descriptionNo功能描述(如'实现用户登录功能'),用于开始访谈。可以是简短的自然语言描述
feature_nameNo功能名称(kebab-case 格式,如 user-login)。可选,会自动从描述中提取

TDQS

B3.1/5.0
Behavior1/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description claims the tool generates interview record files (side effects), but annotations declare readOnlyHint=true and idempotentHint=true, which imply no state changes. This is a direct contradiction, severely undermining transparency. Without annotations, the description itself would provide some behavioral context, but the contradiction makes it misleading.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence that packs essential information: use case, function, output, and type constraint. It is concise but could be better structured (e.g., separate sentences for clarity). Still, it efficiently conveys key points.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool has a nested object parameter ('answers') and no output schema. The description fails to explain the structure of the interview answers or the format of the generated record file. It mentions the output is used by other tools but lacks details needed for correct invocation and understanding the tool's full behavior.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3. The description does not add significant meaning beyond the schema descriptions for 'answers', 'description', and 'feature_name'. It mentions that 'answers' are for submitting results and 'description' starts the interview, but this is already captured in the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: clarify requirements through structured questions when they are unclear. It specifies that it generates interview record files for subsequent tools and only supports 'feature' type. While it lacks explicit differentiation from sibling tools like 'ask_user', the purpose is well-defined.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly states when to use: when user requirements are unclear and need clarification. It also mentions the output is used by start_feature/add_feature, indicating the tool's place in the workflow. However, it does not provide when-not-to-use scenarios or alternative tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

plan_heartbeatA
Idempotent

由 Agent 在 Delegated Plan 执行过程中记录轻量检查点。首次调用必须提供完整 plan;后续合并步骤、证据、产物、候选经验、验收结果、运行证据和 revision。除 requirements 外,每条用于收敛的 evidence 必须至少提供 reference 或 revision,否则 converge 会明确拒绝。只记录状态,不代替 Agent 执行。

ParametersJSON Schema
NameRequiredDescriptionDefault
planNo首次 heartbeat 必填的完整 Delegated Plan Contract
statusNo
plan_idYesDelegated Plan 的稳定 planId
evidenceNo
artifactsNo
project_rootNo项目根目录;省略时按工作区解析
skipped_stepsNo
declared_scopeNo本次 Plan 已确认的目录、模块、契约、排除项等作用域;省略时保留原值
current_step_idNo
runtime_evidenceNo
unresolved_itemsNo
memory_candidatesNo
acceptance_resultsNo
completed_step_idsNo
last_verified_revisionNo
architecture_candidatesNo

TDQS

A3.7/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description adds meaningful behavioral context beyond annotations: it clarifies the tool only records state, does not execute the agent's actions, and reveals a dependency on 'converge' (which will reject evidence lacking reference/revision). Annotations already declare idempotentHint=true and destructiveHint=false, which the description does not contradict. The description reinforces the non-destructive, bookkeeping nature.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single paragraph of about 100 Chinese characters, front-loading the purpose and then key constraints. Every sentence adds value. It could be slightly improved with bullet points or separate sections for first call vs subsequent calls, but it is already very concise without waste.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has 16 parameters, deep nesting, no output schema, and is part of a complex Delegated Plan workflow, the description is too minimal. It does not explain what the tool returns (likely just success/failure), how to handle conflicts or errors, the lifecycle of a heartbeat sequence, or what happens if the plan_id is invalid. For such complexity, more completeness is needed to guide the agent fully.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is only 25% (4 of 16 parameters have descriptions). The description compensates by stating that 'plan' is required on first call and that subsequent calls merge various categories like evidence, artifacts, acceptance_results, etc. However, it does not explain individual parameter semantics for fields like 'unresolved_items', 'last_verified_revision', or the differences between 'memory_candidates' and 'architecture_candidates'. The constraint for evidence (reference/revision) is helpful but insufficient for the overall parameter richness.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool records lightweight checkpoints during Delegated Plan execution, with the specific verb '记录' and resource '检查点'. It also distinguishes itself from siblings by focusing on status recording rather than execution ('只记录状态,不代替 Agent 执行'). However, it does not explicitly differentiate from all 24 sibling tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly states that the first call must provide a complete plan and subsequent calls merge various fields (steps, evidence, artifacts, etc). It also provides a key constraint: for convergence, evidence must include 'reference' or 'revision' unless it is 'requirements'. This gives clear usage context. However, no explicit 'when NOT to use' or comparison to alternatives like 'converge' is provided.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

refactorA
Read-onlyIdempotent

当用户需要重构代码、改善代码结构时使用。指南型工具:注入 code/file_path 与重构清单,由 Agent 分析后输出重构计划 JSON;MCP 不自动修改源文件

ParametersJSON Schema
NameRequiredDescriptionDefault
codeNo要重构的代码
goalNo重构目标:improve_readability(可读性)、reduce_complexity(复杂度)、performance(性能)。可选
file_pathNo要重构的文件路径(相对 project_root 或绝对路径)。未传 code 时从磁盘读取
project_rootNo项目根目录绝对路径。配合 file_path 解析相对路径

TDQS

A4.4/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and idempotentHint=true. The description adds valuable behavioral context: it is a guidance tool that injects code/file_path, analyzes, and outputs a refactoring plan JSON, and explicitly states that MCP does not modify source files. No contradictions with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences with no wasted words. The description is front-loaded with the purpose and immediately clarifies the tool's non-modifying nature and output format.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with 4 parameters (0 required) and no output schema, the description explains the output (refactoring plan JSON) and behavior (no file modification). It lacks details on how conflicting inputs (both code and file_path) are handled, but overall it is sufficient for an agent to understand the tool's capabilities.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all four parameters adequately. The description mentions 'injection of code/file_path' but adds no new information beyond what the schema provides. Baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states the tool is for refactoring code and improving code structure. It specifies it's a guidance tool that outputs a refactoring plan JSON without modifying files, distinguishing it from sibling tools like fix_bug or add_feature.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Description explicitly indicates when to use ('当用户需要重构代码、改善代码结构时使用') and mentions it's a guidance tool with no automatic file modification. It does not explicitly state when not to use, but the context is clear enough for an agent to choose appropriately among siblings.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

resume_planA
Read-onlyIdempotent

从 .mcp-probe-kit/plans/ 读取 Delegated Plan 检查点,按依赖计算下一可执行步骤、阻塞步骤和 resumeContext。plan_id 可选;省略时自动恢复当前项目最近更新的 active/blocked Plan。本工具只读取状态,不替 Agent 执行;返回 mustContinue=true 后 Agent 必须立即执行 nextStep/nextTool,逐步调用 plan_heartbeat,禁止只汇报恢复结果后停止。

ParametersJSON Schema
NameRequiredDescriptionDefault
plan_idNo可选;省略时选择当前项目最近更新的 active/blocked Plan
project_rootNo

TDQS

A4.5/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already mark readOnlyHint and idempotentHint. The description adds valuable context: it performs dependency calculation, returns a mustContinue flag, and imposes a post-call behavior requirement. No contradictions with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is relatively concise and front-loaded with the core action. But it could be slightly more streamlined; the behavioral prohibition at the end, while important, adds length. Still, every sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (reading a plan, computing dependencies, returning a mustContinue flag), the description covers the purpose, usage, and key behavioral constraints. It mentions the output components (next step, blocked steps, resumeContext) but lacks a detailed return structure since no output schema exists. It is nearly complete but could elaborate on the format of the returned data.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 50% (only plan_id has a description). The description adds meaning for plan_id by explaining its optionality and default behavior. However, project_root is entirely undocumented in both schema and description, so the description does not fully compensate for the coverage gap. Baseline 3 is appropriate given the partial addition.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb (read, calculate), resource (Delegated Plan checkpoint from .mcp-probe-kit/plans/), and specific outputs (next executable step, blocked steps, resumeContext). It distinguishes itself from siblings like plan_heartbeat by noting it only reads state and does not execute, and contrasts with execution-oriented tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly explains when to use the tool (resume a plan, both with explicit plan_id or auto-detection), what to do after invocation (must immediately execute nextStep/nextTool and call plan_heartbeat), and what not to do (prohibited from only reporting results and stopping). This provides clear guidance and alternatives by implication.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

start_bugfixC
Read-only

当用户需要找问题、修 bug、排查异常时使用。默认按 SRC-8(TBP-inspired)编排:收敛边界→真因工作表→修复→测试→记忆沉淀。

ParametersJSON Schema
NameRequiredDescriptionDefault
docs_dirNo文档目录。可选,默认 docs
descriptionNoBug 描述(与 error_message 同义;仅传 description 时自动作为错误信息)
stack_traceNo堆栈跟踪。可选
code_contextNo相关代码。可选
feature_nameNo关联功能规格名(对应 docs/specs/<feature_name>/)。提供后或能自动识别时,修复闭环会插入 check_spec 闸门
project_rootNo项目根目录绝对路径。建议显式传入;docs_dir 等相对路径参数应统一相对该项目根目录解析,避免依赖客户端 cwd。
analysis_modeNo分析方法。默认 src8;tbp8 为兼容别名
error_messageNo错误信息(可与 description 二选一)
loop_max_roundsNo需求 loop 最大轮次(默认 2)
template_profileNo模板档位:auto(默认,自动选择 guided/strict)、guided(普通模型友好)或 strict(结构更紧凑)
requirements_modeNo需求模式:steady(默认,直接修复)或 loop(需求澄清与补全)
loop_assumption_capNo每轮假设上限(默认 3)
loop_question_budgetNo每轮最多提问数量(默认 5)

TDQS

C2.9/5.0
Behavior1/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description states the tool performs bug fixing (mutation), but annotations declare readOnlyHint=true. This is a direct contradiction. The description does not disclose any behavioral traits beyond the workflow steps, and the annotation conflict severely undermines transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Description is two sentences, front-loaded with purpose, and contains no extraneous information. Every word serves a purpose.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Despite having 13 parameters and no output schema, the description only outlines the workflow process. It fails to describe return values, side effects, or prerequisites. The annotation contradiction further reduces completeness.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with all parameters having descriptions. The tool description adds no additional semantic meaning beyond what the schema already provides, so baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states the tool is for finding problems, fixing bugs, and troubleshooting anomalies. It also describes the default workflow steps. However, it does not differentiate from the sibling tool 'fix_bug', which appears to have overlapping functionality.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Description implies when to use (bug fixing/troubleshooting) but provides no explicit when-not-to-use or alternatives. Given the presence of sibling 'fix_bug', the lack of comparative guidance could lead to confusion.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

start_featureA
Read-only

新功能、功能增强、大版本升级或跨模块研发的首选入口。Agent 必须把当前对话已确认的完整目标、范围、模块、阶段和约束汇总到 description;用户只说“继续/开始/往下做”时不得原样透传。默认 spec_layout=auto,复杂多模块或多阶段需求会先生成 parent-child 子规格拆分计划,再进入 add_feature→check_spec→实现。仅在规格布局和子规格已明确、且只需渲染规格模板时才直接用 add_feature。

ParametersJSON Schema
NameRequiredDescriptionDefault
docs_dirNo文档输出目录,默认为 docs
subspecsNoparent-child 的子规格定义;每项包含 id、title、fr 和可选 dependsOn
descriptionNo功能详细描述。应汇总当前对话已经确认的完整范围、模块、阶段和约束,不要只传最后一句简短确认;该字段也用于自动判断 flat / parent-child。
spec_layoutNo规格布局:auto(默认,复杂多模块需求自动选择 parent-child)、flat 或 parent-child。显式值优先于自动判断。
feature_nameNo功能名称(kebab-case 格式,如 user-auth)。可选,如果不提供会从 description 自动提取
project_rootNo项目根目录绝对路径。建议显式传入;docs_dir 等相对路径参数应统一相对该项目根目录解析,避免依赖客户端 cwd。
loop_max_roundsNo需求 loop 最大轮次(默认 2)
template_profileNo模板档位:auto(默认,自动选择 guided/strict)、guided(普通模型友好)或 strict(结构更紧凑)
requirements_modeNo需求模式:steady(默认,直接生成规格)或 loop(需求澄清与补全)
loop_assumption_capNo每轮假设上限(默认 3)
loop_question_budgetNo每轮最多提问数量(默认 5)

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations declare readOnlyHint: true and openWorldHint: true, which might seem contradictory since the tool orchestrates feature creation. The description clarifies its orchestrative, non-destructive nature: it generates specs and plans but doesn't modify code. It adds behavioral detail beyond annotations (e.g., the auto detection of parent-child layout). However, it could be more transparent about exactly what side effects occur (e.g., file creation, project state changes).

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is moderately concise for a tool with many parameters and complex orchestration. It front-loads the essential purpose and usage guidelines. However, it's somewhat dense and could benefit from clear separation of concerns (e.g., bullet points for different behavioral aspects) to improve scannability.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (11 parameters, conditional orchestration, sibling differentiation needs), the description covers core aspects: purpose, when-to-use, orchestration flow, and key parameter semantics. It lacks an output description, but there is no output schema to rely on. It could be more complete by explaining the overall workflow in more detail, but it's adequate for an agent to select and invoke the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3. The description adds significant value by explaining the semantics of description (must summarize confirmed scope, not just pass through user's last confirmation) and spec_layout's auto behavior (complex needs trigger parent-child planning). It also clarifies that feature_name is optional and auto-extracted. However, the description doesn't detail all 11 parameters individually.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states this is the primary entry point for new features, enhancements, major version upgrades, and cross-module development. It distinguishes itself from siblings like start_bugfix (bug fixes) and start_onboard (onboarding) by its scope and purpose.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit when-to-use guidance: it's the first choice for complex multi-module or multi-phase requirements. It also explicitly states when NOT to use it and what to use instead: '仅在规格布局和子规格已明确、且只需渲染规格模板时才直接用 add_feature.' This is excellent usage guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

start_onboardA
Read-only

当用户需要快速上手新项目时使用。编排:生成上下文文档。

ParametersJSON Schema
NameRequiredDescriptionDefault
docs_dirNo文档目录。可选,默认 docs
project_pathNo项目根目录绝对路径。建议显式传入;如果还传 docs_dir 等相对路径,应统一相对该项目根目录解析。

TDQS

A3.5/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already provide readOnlyHint=true and openWorldHint=true, indicating the tool is safe and may access external resources. The description adds that it generates context documentation, but does not detail the process or potential side effects beyond what annotations convey. No contradiction detected.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description consists of two very concise sentences that convey the purpose and process without any wasted words. It is front-loaded and efficient.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple tool with two optional parameters and no output schema, the description is adequate but minimal. It does not explain what 'context documentation' entails, prerequisites, or expected outcomes, which could improve completeness.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema covers both parameters with descriptions, achieving 100% coverage. The tool description does not add any additional semantics beyond the schema, so a baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool is used for quickly starting a new project by generating context documentation. It distinguishes from siblings like 'init_project' by focusing on onboarding and documentation generation, but does not explicitly differentiate from potentially similar tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides a clear context for when to use the tool (when starting a new project), but does not specify when not to use it or mention alternative tools among the siblings.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

start_productA
Read-onlyIdempotent

产品设计完整工作流入口。返回闭环 delegated plan:Agent 生成 PRD 与原型文档,调用 ui_design_system 和 start_ui 完成设计系统及可交互 HTML 原型,并更新项目上下文;不会引用不存在的 gen_prd/gen_prototype 工具。

ParametersJSON Schema
NameRequiredDescriptionDefault
docs_dirNo文档输出目录(可选)。默认为 'docs'。所有文档将保存到此目录下的子目录中。
constraintsNo核心约束(可选)。多个约束建议用分号分隔。未提供时会尝试从 description 的“核心约束:”或“约束:”段落提取。
descriptionNo产品描述。详细描述产品的目标、功能、用户需求等信息。这是整个工作流的基础输入。如果提供了 requirements_file,此参数可选。
product_nameNo产品名称(可选)。如果不提供,将使用默认名称'新产品'。
product_typeNo产品类型(可选)。用于生成设计系统,如 'SaaS'、'E-commerce'、'Healthcare' 等。默认为 'SaaS'。
project_rootNo目标项目根目录绝对路径。建议显式传入,避免文档和 Skill 写入 MCP 包安装目录。
target_usersNo目标用户(可选)。例如:TypeScript 项目维护者、企业管理员、普通消费者。未提供时会尝试从 description 的“目标用户:”段落提取。
requirements_fileNo需求文档文件路径(可选)。如果提供,将读取该文件的完整内容作为产品需求。支持 Markdown、文本等格式。例如:'docs/requirements.md'、'project.md'。
skip_design_systemNo跳过设计系统生成(可选)。默认为 false。如果设置为 true,将不生成设计系统。

TDQS

A3.9/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The annotations state readOnlyHint=true and idempotentHint=true, but the description describes a workflow that runs multiple steps and may produce artifacts. It does add context that it will call ui_design_system and start_ui, and update project context, which goes beyond annotations. It also clarifies that it won't reference non-existent tools. This adds useful behavioral context without contradicting annotations (since readOnlyHint=true might be questionable but not contradicted).

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise (two sentences) and front-loaded with the main purpose. It covers key workflow actions and mentions tool dependencies in the first sentence. It's not overly verbose, but could possibly be more concise by removing redundant mentions. Still efficient.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity of a workflow-orchestrating tool with 9 parameters (many optional) and no output schema, the description provides essential context about the workflow, what it generates, and which tools it integrates. It also clarifies implicit behavior. It lacks details about return values or step-by-step behavior, but given the schema covers parameters well, this is adequate.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema description coverage is 100%, meaning all 9 parameters are documented in the schema itself. The tool description does not add significant additional parameter semantics beyond what the schema already provides, except maybe the overall workflow context. Therefore, baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly explains the tool's purpose: it is an entry point for a complete product design workflow that generates a delegated plan, creates PRD and prototype documents, and calls other tools. It also explicitly clarifies that it doesn't reference non-existent tools, which helps distinguish it from potential alternative tools. However, it doesn't provide strong differentiation from sibling tools like start_feature or start_ui, but the workflow context is clear.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies when to use this tool: when starting a product design workflow from scratch, it will orchestrate the process and produce documents. It also explicitly notes it doesn't use gen_prd/gen_prototype, preventing misuse. However, it doesn't clearly say when NOT to use it or mention alternatives like start_feature, so it's not fully explicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

start_ralphA
Read-onlyIdempotent

用于需要多轮小步实现、每轮真实验证和正式收敛的长任务。返回有界 Delegated Plan、每轮 Heartbeat 证据契约和可选前台辅助脚本;不自动运行循环、不创建后台进程。安全停止不等于成功

ParametersJSON Schema
NameRequiredDescriptionDefault
goalNo本次要完成的目标/需求描述。例如:'实现用户认证功能'、'修复登录 bug'
modeNo运行模式:safe(安全模式,默认)、normal(普通模式)。安全模式包含多重保护机制
max_roundsNomax_iterations 的兼容别名;建议新调用统一使用 max_iterations
cli_commandNoClaude Code CLI 命令名。默认:'claude-code'(可能需要改为 'claude')
max_minutesNo最大运行分钟数。safe 模式默认:25
project_rootNo目标项目根目录绝对路径。省略时从当前已确认工作区解析
test_commandNo每轮执行的测试命令。默认:'npm test'(会在首轮由 agent 识别正确命令)
confirm_everyNo每几轮要求人工确认。safe 模式默认:1(每轮都确认)
max_diff_linesNogit diff 变更行数超过此值停止(防失控)。safe 模式默认:300
max_iterationsNo最大迭代轮数。safe 模式默认:8
confirm_timeoutNo确认等待秒数,超时自动停止。safe 模式默认:20
max_same_outputNo输出重复多少次停止(防卡死)。safe 模式默认:2
cooldown_secondsNo每轮后冷却秒数。safe 模式默认:8
completion_promiseNo完成条件描述。默认:'tests passing + requirements met'

TDQS

A3.5/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The annotations include readOnlyHint: true and idempotentHint: true, which together suggest the tool is safe and non-destructive. However, the description describes initiating a multi-round cycle that likely makes changes (e.g., '每轮真实验证' implies code modifications and test runs). This contradicts the readOnlyHint, which should indicate a read-only operation. The description does not disclose behavioral traits beyond what annotations provide; it adds that the tool does not create background processes and that safe stop does not equal success, but these are minor. The contradiction between description and annotation is significant, warranting a score of 2.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise at roughly two sentences. It front-loads the purpose and key behavioral traits. However, the structure could be improved by separating the 'returns' section from the 'not' statements for clarity. There is no redundancy, and each clause serves a purpose, earning a 4.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool has 14 parameters with 100% schema coverage, no output schema, and no nested objects. The description provides a high-level overview of what the tool does and its return values (Delegated Plan, Heartbeat evidence, optional front-end scripts). However, given the complexity of the tool (a multi-round development orchestrator), more context about the return format, how to use the evidence, and how failures are reported would be valuable. The presence of annotation contradictions further reduces completeness, making a 3 appropriate.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, meaning every parameter already has a description in the schema. The tool description does not add any parameter-specific semantics beyond what the schema provides. However, there are 14 parameters, many with default behaviors tied to mode, and the description does not summarize key relationships (e.g., how mode affects max_rounds, confirm_every, etc.). The baseline for 100% coverage is 3, but given the complexity and the fact that the description could have provided a high-level overview of parameter interactions, a 4 is given because the schema descriptions are detailed and the tool description's lack of additional parameter guidance is not severely detrimental.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states that the tool is for long tasks requiring multi-turn small-step implementation with real verification and formal convergence. It uses specific verbs like 'start_ralph' implying initiation of a process, and contrasts with siblings by mentioning '多轮小步实现、每轮真实验证和正式收敛' which distinguishes it from simpler tools like start_feature or start_bugfix. However, the description is in Chinese, which might reduce clarity for non-Chinese speakers, and the title 'Ralph 循环开发编排' provides additional context.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly states the tool is for '长任务' (long tasks) and mentions what it does not do: '不自动运行循环、不创建后台进程' and '安全停止不等于成功'. This gives implicit guidance on when to use it (complex, iterative tasks) and when not (if you need automatic loops or background processes). However, it does not explicitly name alternatives or provide exclusion criteria relative to the listed sibling tools like 'plan_heartbeat' or 'resume_plan', so a 4 is appropriate.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

start_uiA
Read-only

编排 UI 设计与实现:先锁定视觉方向和信息架构,再生成关键页面,后续通过真实截图评分与迭代完成验收。

ParametersJSON Schema
NameRequiredDescriptionDefault
modeNo执行模式:auto(智能)/ manual(默认)manual
avoidNo项目特定禁用项,使用逗号分隔。
densityNo内容密度。
templateNo模板名称(可选,不提供则自动生成)
frameworkNo目标框架:react、vue、html(默认 react)react
referencesNo参考产品或方法,使用逗号分隔,如 Linear、Apple。
descriptionYesUI 需求描述(如 '登录页面'、'用户列表'、'设置页面')
screen_typeNo页面类型,如 professional-dashboard、workflow-console、marketing-page。未传时自动判断。
project_rootNo项目根目录绝对路径。建议显式传入;如果存在 docs 或模板等相对路径解析,应统一相对该项目根目录处理,避免依赖客户端 cwd。
target_scoreNo截图视觉验收目标分数。
loop_max_roundsNo需求 loop 最大轮次(默认 2)
target_audienceNo目标用户及其专业程度、使用频率和主要压力。
template_profileNo模板档位:auto(默认,自动选择 guided/strict)、guided(普通模型友好)或 strict(结构更紧凑)auto
visual_directionNo视觉方向名称。可使用内置方向或自定义方向。
brand_personalityNo品牌气质,使用逗号分隔,如 精准、可信、克制。
requirements_modeNo需求模式:steady(默认)或 loop(需求澄清与补全)
review_max_roundsNo截图评审未达标时的最大迭代轮次。每轮必须重新生成真实截图并评分。
loop_assumption_capNo每轮假设上限(默认 3)
loop_question_budgetNo每轮最多提问数量(默认 5)

TDQS

A3.7/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations include readOnlyHint: true, openWorldHint: true, and idempotentHint: false. The description goes beyond these by disclosing the iterative loop (screenshot scoring), the planning phase before generation, and the acceptance criteria. This adds behavioral context: the tool may ask questions (loop), generate multiple revisions, and depend on external screenshot evaluation. No contradiction with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise: one sentence that captures the three-phase workflow. It front-loads the purpose before listing any parameters. However, given the complexity (19 parameters, multi-step process), a slightly expanded description might be warranted to avoid ambiguity. Minimal waste, but could do more without bloating.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the high parameter count (19), rich annotations (readOnly, openWorld), and no output schema, the description provides a solid high-level narrative. It explains the iterative and screenshot-based nature of the tool. However, it does not mention what happens if 'loop' mode or 'auto' mode is selected, nor the role of templates or project_root. Still, for a tool with this complexity, the description is reasonably complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3. The description does not add much parameter-level semantics beyond what the schema already provides. It mentions locking visual direction and generating pages, which loosely maps to visual_direction and description, but does not explain complex parameters like requirements_mode or loop_* in greater depth. No extra value beyond schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool orchestrates UI design and development: first locking visual direction and information architecture, then generating key pages, and finally iterating with real screenshots. This is a specific verb+resource (orchestrate UI development) with a step-by-step process. It is reasonably distinguishable from sibling tools like ui_design_system (which likely focuses on design tokens) and ui_search (which is about searching).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies the tool is used for starting a UI design workflow, but it does not explicitly state when to use this vs. siblings like ui_design_system or converge. There is no guidance on prerequisites (e.g., existing project root?), exclusion criteria, or alternative tools. The context is implicit but not explicit enough to help an agent decide between siblings.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

ui_design_systemA
Read-onlyIdempotent

生成可执行的视觉方向,而不是风格标签拼盘。输出核心任务、信息架构、内容密度、排版与色彩策略、组件原则、明确禁用项和截图验收标准。

ParametersJSON Schema
NameRequiredDescriptionDefault
avoidNo项目特定禁用项,如 卡片瀑布、大标题、装饰性图标、大面积空白。
stackNo技术栈,如 react、nextjs、vue、nuxt、html。仅影响实现建议,不决定审美。
densityNo内容密度。专业后台通常 compact,通用产品 comfortable,营销页 spacious。
keywordsNo兼容旧调用方。等价于 brand_personality,后续应改用 brand_personality。
referencesNo参考产品或设计方法,如 Linear、Apple、Vercel。只提取结构方法,不照抄视觉。
descriptionNo页面或产品的核心任务、关键内容和使用场景。不要只写视觉形容词。
screen_typeNo页面类型,如 professional-dashboard、workflow-console、marketing-page、commerce-catalog、commerce-detail、content-workspace。未传时自动判断。
product_typeYes产品类型,如 SaaS、交易系统、医疗应用、电商或品牌官网。
target_scoreNo视觉验收目标分数。低于该分数不得交付。
target_audienceNo目标用户及其专业程度、使用频率和主要压力。
visual_directionNo指定视觉方向。内置方向包括 editorial-precision、operational-clarity、calm-trust、product-storytelling、commerce-focus,也支持自定义名称。
brand_personalityNo品牌气质,如 精准、可信、克制。字符串可用逗号分隔。

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations declare readOnlyHint=true and idempotentHint=true, meaning the tool doesn't change state and produces consistent results. The description aligns with this by describing generation of a design direction without side effects. It adds value by detailing what the tool outputs (e.g., 'explicit disallowed items'), which goes beyond annotation hints. No contradiction.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, dense sentence that front-loads the core distinction and lists all output deliverables. Every phrase is meaningful, and there is no redundancy. It efficiently uses 50 characters to set context and then specifies outcomes.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given high parameter schema coverage (100%) and annotations, the description is largely complete. It could be improved by briefly mentioning the return format or what '截图验收标准' entails, but the core directive is clear. The absence of an output schema is compensated by the description listing concrete deliverables.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so baseline is 3. The description goes beyond by emphasizing that output is executable, not just style tags. While most parameters have thorough schema descriptions, the tool description adds a strategic layer that clarifies purpose, compensating for the lack of extra parameter details in the tool description itself. The description effectively frames all 12 parameters.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool generates executable visual direction, distinguishing it from a 'collage of style tags'. It lists specific outputs: core tasks, information architecture, content density, typography, color strategy, component principles, explicit disallowed items, and screenshot acceptance criteria. This differentiates it from sibling tools like 'ui_search' (searching) and 'start_ui' (a different UI task).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implicitly sets context by contrasting with 'style tag collages', suggesting when not to use it. However, it does not explicitly state when to use this tool versus alternatives like 'start_ui' or 'converge'. The sibling list is diverse, but no direct exclusions or alternatives are mentioned.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

workflowA
Read-onlyIdempotent

仅当 Agent 阅读 Skill 和各工具 description 后仍不确定该调用哪个 MCP 时使用的兜底选择指南。workflow 不做自然语言意图识别:scenario=auto(默认)只返回工具选择规则与速查表,不从 intent 猜 firstTool;Agent 根据完整对话自行判断或澄清。若 Agent 已明确场景,可传显式 scenario 获取该场景的确定性 firstTool、phases 和参数提示。同时确保用户项目已存在 .agents/skills/mcp-probe-kit/SKILL.md 与 AGENTS.md 中的 Skill 引用(缺失则自动创建/更新)。

ParametersJSON Schema
NameRequiredDescriptionDefault
intentNo可选上下文摘要。scenario=auto 时仅供指南展示,不参与自动分类;显式 scenario 时用于生成该场景的参数提示和阶段说明。
scenarioNo可选:显式场景。默认 auto 只返回 Agent 工具选择指南,不从 intent 推断场景;Agent 已确定场景时传 feature/bugfix/ui/... 获取确定性流程说明
project_rootNo可选。项目根目录绝对路径;未传时自动从 MCP 客户端工作区解析(如 Cursor 注入 WORKSPACE_FOLDER_PATHS、OpenCode/客户端配置的 cwd 等)。仅边缘场景需手动传入。

TDQS

A4/5.0
Behavior1/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description states the tool '确保用户项目已存在 .agents/skills/mcp-probe-kit/SKILL.md 与 AGENTS.md 中的 Skill 引用(缺失则自动创建/更新)' which implies file creation/update side-effects. This contradicts the annotation 'readOnlyHint: true' which indicates no state mutation. This is a serious contradiction, scoring 1 per the rubric.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three sentences in Chinese, front-loaded with the tool's purpose. Each sentence adds essential information: usage condition, behavior distinction, alternative usage, and side-effect. No wasted words; compact yet complete.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the large set of sibling tools (23), the description covers the core use case (routing guidance) and parameter behavior. It mentions return types (table, deterministic flow, parameter hints) but lacks explicit output format details. With no output schema, a bit more specificity on the response structure would improve completeness. Otherwise adequate.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with clear descriptions. The description adds behavioral meaning beyond the schema: it explains that 'intent' is only for display when scenario=auto and not used for classification, and that 'scenario' controls whether to return a table or deterministic flow. This enhances usability beyond the raw enum values.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly defines the tool as a fallback guidance when unsure which MCP to use. It distinguishes itself from sibling tools (which are direct task tools) by stating it returns a tool selection table or deterministic flow, not performing intent recognition itself. The verb '兜底选择指南' (fallback selection guide) is specific and differentiated.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly states when to use: only after reading Skill and tool descriptions when still uncertain. Also provides when-not: '不做自然语言意图识别' (does not do NLU) and that the agent should judge or clarify. Describes alternative scenarios: use explicit scenario for deterministic flow. Clear boundary conditions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 26 tool updatesv4.0.0
    • Removedadd_feature
    • Addedarchitecture
    • Removedask_user
    • Changedcode_review6 fields changed
      • addedInput schema / properties / base_ref
        Added value: +{
        +  "description": "diff_mode=range 时的基线 Git ref",
        +  "type": "string"
        +}
      • addedInput schema / properties / diff_mode
        Added value: +{
        +  "description": "Git diff 范围。auto 默认审查相对 HEAD 的 staged+unstaged 变更;working 仅未暂存;staged 仅已暂存;range 使用 base_ref/head_ref",
        +  "enum": [
        +    "auto",
        +    "working",
        +    "staged",
        +    "range"
        +  ],
        +  "type": "string"
        +}
      • addedInput schema / properties / head_ref
        Added value: +{
        +  "description": "diff_mode=range 时的目标 Git ref",
        +  "type": "string"
        +}
      • addedInput schema / properties / max_diff_chars
        Added value: +{
        +  "description": "最大 diff 字符数,1000-500000,默认 120000。超出时明确标记 truncated",
        +  "type": "number"
        +}
      • addedInput schema / properties / plan_id
        Added value: +{
        +  "description": "可选托管 Plan ID。提供后读取 Plan 状态并比较 declaredScope、产物、测试、架构证据和 revision",
        +  "type": "string"
        +}
      • changedInput schema / properties / project_root / description
        Previous value: -"项目根目录绝对路径。配合 file_path 解析相对路径"New value: +"项目根目录绝对路径。未传 code/file_path 时,可从该 Git 仓库自动收集真实 diff"
    • Addedconverge
    • Removeddelete_memory_asset
    • Changedestimate3 fields changed
      • addedInput schema / properties / experience_level / enum
        Added value: +[
        +  "junior",
        +  "mid",
        +  "senior"
        +]
      • addedInput schema / properties / team_size / minimum
        Added value: +1
      • changedInput schema / properties / team_size / type
        Previous value: -"number"New value: +"integer"
    • Removedfix_bug
    • Changedgencommit1 field changed
      • addedInput schema / properties / project_root
        Added value: +{
        +  "description": "可选,目标 Git 仓库根目录或其子目录。未提供 changes 时用于确认当前项目确实是 Git 仓库",
        +  "type": "string"
        +}
    • Changedgit_work_report1 field changed
      • addedInput schema / properties / project_root
        Added value: +{
        +  "description": "目标 Git 仓库根目录或其子目录;省略时按当前 MCP 工作区解析",
        +  "type": "string"
        +}
    • Changedinit_project1 field changed
      • changedInput schema / properties / project_root / description
        Previous value: -"可选。项目根目录绝对路径;未传时自动从 MCP 客户端工作区解析(如 Cursor 注入 WORKSPACE_FOLDER_PATHS、OpenCode/客户端配置的 cwd 等)。仅边缘场景需手动传入。"New value: +"可选。项目根目录绝对路径;未传时自动从 MCP 客户端工作区解析(如 Cursor 注入 WORKSPACE_FOLDER_PATHS、OpenCode/客户端配置的 cwd 等)。仅边缘场景需手动传入。 init_project 是新项目初始化入口:显式传入尚不存在的绝对路径时,会创建该目录并仅写入 MCP 托管的 Skill、AGENTS.md 与 CLI fallback 文件;文件系统根目录、用户家目录和系统目录会被拒绝。"
    • Removedmemorize_asset
    • Addedplan_heartbeat
    • Removedread_memory_asset
    • Addedresume_plan
    • Removedscan_and_extract_patterns
    • Removedsearch_memory
    • Changedstart_feature3 fields changed
      • changedInput schema / properties / description / description
        Previous value: -"功能详细描述。可以是简短的自然语言(如'开发用户认证功能')或详细的需求说明"New value: +"功能详细描述。应汇总当前对话已经确认的完整范围、模块、阶段和约束,不要只传最后一句简短确认;该字段也用于自动判断 flat / parent-child。"
      • changedInput schema / properties / spec_layout / description
        Previous value: -"规格布局:flat(默认)或 parent-child(由 Agent 落盘母/子规格)"New value: +"规格布局:auto(默认,复杂多模块需求自动选择 parent-child)、flat 或 parent-child。显式值优先于自动判断。"
      • changedInput schema / properties / spec_layout / enum
        Previous value: -[
        -  "flat",
        -  "parent-child"
        -]New value: +[
        +  "auto",
        +  "flat",
        +  "parent-child"
        +]
    • Changedstart_product3 fields changed
      • addedInput schema / properties / constraints
        Added value: +{
        +  "description": "核心约束(可选)。多个约束建议用分号分隔。未提供时会尝试从 description 的“核心约束:”或“约束:”段落提取。",
        +  "type": "string"
        +}
      • addedInput schema / properties / project_root
        Added value: +{
        +  "description": "目标项目根目录绝对路径。建议显式传入,避免文档和 Skill 写入 MCP 包安装目录。",
        +  "type": "string"
        +}
      • addedInput schema / properties / target_users
        Added value: +{
        +  "description": "目标用户(可选)。例如:TypeScript 项目维护者、企业管理员、普通消费者。未提供时会尝试从 description 的“目标用户:”段落提取。",
        +  "type": "string"
        +}
    • Changedstart_ralph2 fields changed
      • addedInput schema / properties / max_rounds
        Added value: +{
        +  "description": "max_iterations 的兼容别名;建议新调用统一使用 max_iterations",
        +  "type": "number"
        +}
      • addedInput schema / properties / project_root
        Added value: +{
        +  "description": "目标项目根目录绝对路径。省略时从当前已确认工作区解析",
        +  "type": "string"
        +}
    • Changedstart_ui9 fields changed
      • addedInput schema / properties / avoid
        Added value: +{
        +  "description": "项目特定禁用项,使用逗号分隔。",
        +  "type": "string"
        +}
      • addedInput schema / properties / brand_personality
        Added value: +{
        +  "description": "品牌气质,使用逗号分隔,如 精准、可信、克制。",
        +  "type": "string"
        +}
      • addedInput schema / properties / density
        Added value: +{
        +  "description": "内容密度。",
        +  "enum": [
        +    "compact",
        +    "comfortable",
        +    "spacious"
        +  ],
        +  "type": "string"
        +}
      • addedInput schema / properties / references
        Added value: +{
        +  "description": "参考产品或方法,使用逗号分隔,如 Linear、Apple。",
        +  "type": "string"
        +}
      • addedInput schema / properties / review_max_rounds
        Added value: +{
        +  "default": 3,
        +  "description": "截图评审未达标时的最大迭代轮次。每轮必须重新生成真实截图并评分。",
        +  "maximum": 5,
        +  "minimum": 1,
        +  "type": "number"
        +}
      • addedInput schema / properties / screen_type
        Added value: +{
        +  "description": "页面类型,如 professional-dashboard、workflow-console、marketing-page。未传时自动判断。",
        +  "type": "string"
        +}
      • addedInput schema / properties / target_audience
        Added value: +{
        +  "description": "目标用户及其专业程度、使用频率和主要压力。",
        +  "type": "string"
        +}
      • addedInput schema / properties / target_score
        Added value: +{
        +  "default": 8.5,
        +  "description": "截图视觉验收目标分数。",
        +  "maximum": 10,
        +  "minimum": 7.5,
        +  "type": "number"
        +}
      • addedInput schema / properties / visual_direction
        Added value: +{
        +  "description": "视觉方向名称。可使用内置方向或自定义方向。",
        +  "type": "string"
        +}
    • Removedsync_ui_data
    • Changedui_design_system12 fields changed
      • addedInput schema / properties / avoid
        Added value: +{
        +  "description": "项目特定禁用项,如 卡片瀑布、大标题、装饰性图标、大面积空白。",
        +  "oneOf": [
        +    {
        +      "type": "string"
        +    },
        +    {
        +      "items": {
        +        "type": "string"
        +      },
        +      "type": "array"
        +    }
        +  ]
        +}
      • addedInput schema / properties / brand_personality
        Added value: +{
        +  "description": "品牌气质,如 精准、可信、克制。字符串可用逗号分隔。",
        +  "oneOf": [
        +    {
        +      "type": "string"
        +    },
        +    {
        +      "items": {
        +        "type": "string"
        +      },
        +      "type": "array"
        +    }
        +  ]
        +}
      • addedInput schema / properties / density
        Added value: +{
        +  "description": "内容密度。专业后台通常 compact,通用产品 comfortable,营销页 spacious。",
        +  "enum": [
        +    "compact",
        +    "comfortable",
        +    "spacious"
        +  ],
        +  "type": "string"
        +}
      • changedInput schema / properties / description / description
        Previous value: -"系统说明(推荐):详细描述产品功能、特点、使用场景。例如:'政府类网站,需要权威、可信、易用的设计风格,面向公众提供政务服务'。这将帮助推理引擎生成更准确的设计方案。"New value: +"页面或产品的核心任务、关键内容和使用场景。不要只写视觉形容词。"
      • changedInput schema / properties / keywords / description
        Previous value: -"关键词(可选):逗号分隔的关键词,如 'professional, modern, trustworthy, authoritative'(专业、现代、可信、权威)。用于辅助匹配设计风格。"New value: +"兼容旧调用方。等价于 brand_personality,后续应改用 brand_personality。"
      • changedInput schema / properties / product_type / description
        Previous value: -"产品类型(必填):SaaS, E-commerce, Healthcare, Fintech, Government(政府), Education(教育), Portfolio, Agency 等。这是推理引擎的核心输入。"New value: +"产品类型,如 SaaS、交易系统、医疗应用、电商或品牌官网。"
      • addedInput schema / properties / references
        Added value: +{
        +  "description": "参考产品或设计方法,如 Linear、Apple、Vercel。只提取结构方法,不照抄视觉。",
        +  "oneOf": [
        +    {
        +      "type": "string"
        +    },
        +    {
        +      "items": {
        +        "type": "string"
        +      },
        +      "type": "array"
        +    }
        +  ]
        +}
      • addedInput schema / properties / screen_type
        Added value: +{
        +  "description": "页面类型,如 professional-dashboard、workflow-console、marketing-page、commerce-catalog、commerce-detail、content-workspace。未传时自动判断。",
        +  "type": "string"
        +}
      • changedInput schema / properties / stack / description
        Previous value: -"技术栈(推荐):react, vue, nextjs, nuxtjs, tailwind, html, svelte, astro 等。用于生成特定技术栈的实现建议和配置代码。"New value: +"技术栈,如 react、nextjs、vue、nuxt、html。仅影响实现建议,不决定审美。"
      • changedInput schema / properties / target_audience / description
        Previous value: -"目标用户(可选):如 'B2B企业', 'C端消费者', '政府公务员', '普通市民', '开发者' 等。帮助推理引擎选择合适的设计风格。"New value: +"目标用户及其专业程度、使用频率和主要压力。"
      • addedInput schema / properties / target_score
        Added value: +{
        +  "default": 8.5,
        +  "description": "视觉验收目标分数。低于该分数不得交付。",
        +  "maximum": 10,
        +  "minimum": 7.5,
        +  "type": "number"
        +}
      • addedInput schema / properties / visual_direction
        Added value: +{
        +  "description": "指定视觉方向。内置方向包括 editorial-precision、operational-clarity、calm-trust、product-storytelling、commerce-focus,也支持自定义名称。",
        +  "type": "string"
        +}
    • Changedui_search9 fields changed
      • changedInput schema / properties / category / description
        Previous value: -"数据类别(search 模式):colors、icons、charts、landing、products、typography、styles、ux-guidelines、shadcn-blocks、shadcn-components、ui-themes、ui-guidelines-vercel 等"New value: +"search 模式数据类别:colors、icons、charts、landing、products、typography、styles、ux-guidelines、shadcn-blocks、shadcn-components、ui-themes、ui-guidelines-vercel。"
      • addedInput schema / properties / density
        Added value: +{
        +  "description": "structure 模式的目标内容密度。",
        +  "enum": [
        +    "compact",
        +    "comfortable",
        +    "spacious"
        +  ],
        +  "type": "string"
        +}
      • changedInput schema / properties / limit / description
        Previous value: -"返回结果数量(默认 10,范围 1-50)"New value: +"返回结果数量。structure 模式默认 3、最多 5;其他模式默认 10、最多 50。"
      • changedInput schema / properties / min_score / description
        Previous value: -"最小相关性得分(默认 0,范围 0-100)"New value: +"search 模式最小相关性得分。"
      • changedInput schema / properties / mode / description
        Previous value: -"搜索模式:search(搜索 UI/UX 数据,默认)、catalog(查看组件目录)、template(搜索 UI 模板)"New value: +"structure(页面结构,推荐)、search(通用数据)、catalog(组件目录)、template(旧模板兼容)。"
      • addedInput schema / properties / mode / enum
        Added value: +[
        +  "structure",
        +  "search",
        +  "catalog",
        +  "template"
        +]
      • changedInput schema / properties / query / description
        Previous value: -"搜索关键词(支持中英文,如 'button'、'按钮'、'primary color'、'主色调')。catalog 模式不需要此参数。"New value: +"核心任务或搜索关键词。structure 模式应描述用户要完成的任务。"
      • addedInput schema / properties / screen_type
        Added value: +{
        +  "description": "structure 模式的页面类型,如 professional-dashboard、workflow-console、marketing-page、commerce-catalog。",
        +  "type": "string"
        +}
      • changedInput schema / properties / stack / description
        Previous value: -"技术栈过滤(仅 search 模式):react、vue、nextjs、nuxtjs、svelte、astro、flutter、react-native、swiftui、jetpack-compose 等"New value: +"search 模式技术栈过滤。"
    • Removedupdate_memory_asset
    • Changedworkflow3 fields changed
      • changedInput schema / properties / intent / description
        Previous value: -"用户目标或任务描述(自然语言)"New value: +"可选上下文摘要。scenario=auto 时仅供指南展示,不参与自动分类;显式 scenario 时用于生成该场景的参数提示和阶段说明。"
      • changedInput schema / properties / scenario / description
        Previous value: -"可选:显式场景;默认 auto 从 intent 推断"New value: +"可选:显式场景。默认 auto 只返回 Agent 工具选择指南,不从 intent 推断场景;Agent 已确定场景时传 feature/bugfix/ui/... 获取确定性流程说明"
      • changedInput schema / properties / scenario / enum
        Previous value: -[
        -  "auto",
        -  "feature",
        -  "bugfix",
        -  "ui",
        -  "explore",
        -  "commit",
        -  "review",
        -  "refactor",
        -  "onboard",
        -  "spec",
        -  "memory"
        -]New value: +[
        +  "auto",
        +  "feature",
        +  "bugfix",
        +  "ui",
        +  "product",
        +  "ralph",
        +  "architecture",
        +  "arch",
        +  "explore",
        +  "commit",
        +  "work_report",
        +  "report",
        +  "test",
        +  "review",
        +  "refactor",
        +  "onboard",
        +  "spec",
        +  "memory"
        +]
  2. 4 tool updatesv3.7.0
    • Changedadd_feature5 fields changed
      • addedInput schema / properties / docs_dir / maxLength
        Added value: +240
      • addedInput schema / properties / feature_name / maxLength
        Added value: +120
      • addedInput schema / properties / feature_name / pattern
        Added value: +"^[a-z0-9]+(?:-[a-z0-9]+)*$"
      • addedInput schema / properties / spec_layout
        Added value: +{
        +  "description": "规格布局:flat(默认)或 parent-child(由 Agent 落盘母/子规格)",
        +  "enum": [
        +    "flat",
        +    "parent-child"
        +  ],
        +  "type": "string"
        +}
      • addedInput schema / properties / subspecs
        Added value: +{
        +  "description": "parent-child 的子规格定义;每项包含 id、title、fr 和可选 dependsOn",
        +  "items": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "dependsOn": {
        +        "description": "依赖的子规格 ID",
        +        "items": {
        +          "pattern": "^[a-z0-9]+(?:-[a-z0-9]+)*$",
        +          "type": "string"
        +        },
        +        "maxItems": 50,
        +        "type": "array"
        +      },
        +      "fr": {
        +        "description": "负责的 FR-n 列表",
        +        "items": {
        +          "pattern": "^FR-\\d+$",
        +          "type": "string"
        +        },
        +        "maxItems": 100,
        +        "minItems": 1,
        +        "type": "array"
        +      },
        +      "id": {
        +        "description": "唯一的小写 kebab-case 子规格 ID",
        +        "maxLength": 120,
        +        "pattern": "^[a-z0-9]+(?:-[a-z0-9]+)*$",
        +        "type": "string"
        +      },
        +      "title": {
        +        "description": "子规格标题",
        +        "maxLength": 120,
        +        "minLength": 1,
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "id",
        +      "title",
        +      "fr"
        +    ],
        +    "type": "object"
        +  },
        +  "maxItems": 50,
        +  "type": "array"
        +}
    • Changedcheck_spec3 fields changed
      • addedInput schema / properties / docs_dir / maxLength
        Added value: +240
      • addedInput schema / properties / feature_name / maxLength
        Added value: +120
      • addedInput schema / properties / feature_name / pattern
        Added value: +"^[a-z0-9]+(?:-[a-z0-9]+)*$"
    • Changedstart_feature5 fields changed
      • addedInput schema / properties / docs_dir / maxLength
        Added value: +240
      • addedInput schema / properties / feature_name / maxLength
        Added value: +120
      • addedInput schema / properties / feature_name / pattern
        Added value: +"^[a-z0-9]+(?:-[a-z0-9]+)*$"
      • addedInput schema / properties / spec_layout
        Added value: +{
        +  "description": "规格布局:flat(默认)或 parent-child(由 Agent 落盘母/子规格)",
        +  "enum": [
        +    "flat",
        +    "parent-child"
        +  ],
        +  "type": "string"
        +}
      • addedInput schema / properties / subspecs
        Added value: +{
        +  "description": "parent-child 的子规格定义;每项包含 id、title、fr 和可选 dependsOn",
        +  "items": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "dependsOn": {
        +        "description": "依赖的子规格 ID",
        +        "items": {
        +          "pattern": "^[a-z0-9]+(?:-[a-z0-9]+)*$",
        +          "type": "string"
        +        },
        +        "maxItems": 50,
        +        "type": "array"
        +      },
        +      "fr": {
        +        "description": "负责的 FR-n 列表",
        +        "items": {
        +          "pattern": "^FR-\\d+$",
        +          "type": "string"
        +        },
        +        "maxItems": 100,
        +        "minItems": 1,
        +        "type": "array"
        +      },
        +      "id": {
        +        "description": "唯一的小写 kebab-case 子规格 ID",
        +        "maxLength": 120,
        +        "pattern": "^[a-z0-9]+(?:-[a-z0-9]+)*$",
        +        "type": "string"
        +      },
        +      "title": {
        +        "description": "子规格标题",
        +        "maxLength": 120,
        +        "minLength": 1,
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "id",
        +      "title",
        +      "fr"
        +    ],
        +    "type": "object"
        +  },
        +  "maxItems": 50,
        +  "type": "array"
        +}
    • Changedworkflow1 field changed
      • addedInput schema / properties / project_root
        Added value: +{
        +  "description": "可选。项目根目录绝对路径;未传时自动从 MCP 客户端工作区解析(如 Cursor 注入 WORKSPACE_FOLDER_PATHS、OpenCode/客户端配置的 cwd 等)。仅边缘场景需手动传入。",
        +  "type": "string"
        +}
  3. 5 tool updatesv3.6.11
    • Changedcode_review2 fields changed
      • addedInput schema / properties / file_path
        Added value: +{
        +  "description": "要审查的文件路径(相对 project_root 或绝对路径)。未传 code 时从磁盘读取",
        +  "type": "string"
        +}
      • addedInput schema / properties / project_root
        Added value: +{
        +  "description": "项目根目录绝对路径。配合 file_path 解析相对路径",
        +  "type": "string"
        +}
    • Changedfix_bug9 fields changed
      • addedInput schema / properties / actual_behavior
        Added value: +{
        +  "description": "实际行为。可选,用于 TBP-1 现象定义",
        +  "type": "string"
        +}
      • changedInput schema / properties / analysis_mode / description
        Previous value: -"分析方法。默认 tbp8(丰田问题分析 8 步法)"New value: +"分析方法。默认 src8(Software Root-Cause 8-step,受丰田 TBP 启发);tbp8 为兼容别名"
      • changedInput schema / properties / code_context / description
        Previous value: -"相关代码。可选"New value: +"相关代码或图谱摘要。可选"
      • addedInput schema / properties / expected_behavior
        Added value: +{
        +  "description": "期望行为。可选",
        +  "type": "string"
        +}
      • addedInput schema / properties / file_path
        Added value: +{
        +  "description": "相关代码文件路径(相对 project_root 或绝对路径)。未传 code_context 时从磁盘读取",
        +  "type": "string"
        +}
      • addedInput schema / properties / project_root
        Added value: +{
        +  "description": "项目根目录绝对路径。配合 file_path 解析相对路径",
        +  "type": "string"
        +}
      • addedInput schema / properties / steps_to_reproduce
        Added value: +{
        +  "description": "复现步骤。可选,用于 TBP-2 时间线",
        +  "type": "string"
        +}
      • addedInput schema / properties / success_sample
        Added value: +{
        +  "description": "成功/正常样本描述(Step 4 对比用)。无则 Agent 须标注对比样本不足",
        +  "type": "string"
        +}
      • addedInput schema / properties / verification_target
        Added value: +{
        +  "description": "验收目标(Step 3 SMART 目标),如:原复现步骤通过、特定测试绿",
        +  "type": "string"
        +}
    • Changedgentest2 fields changed
      • addedInput schema / properties / file_path
        Added value: +{
        +  "description": "要生成测试的源文件路径(相对 project_root 或绝对路径)。未传 code 时从磁盘读取",
        +  "type": "string"
        +}
      • addedInput schema / properties / project_root
        Added value: +{
        +  "description": "项目根目录绝对路径。配合 file_path 解析相对路径",
        +  "type": "string"
        +}
    • Changedrefactor2 fields changed
      • addedInput schema / properties / file_path
        Added value: +{
        +  "description": "要重构的文件路径(相对 project_root 或绝对路径)。未传 code 时从磁盘读取",
        +  "type": "string"
        +}
      • addedInput schema / properties / project_root
        Added value: +{
        +  "description": "项目根目录绝对路径。配合 file_path 解析相对路径",
        +  "type": "string"
        +}
    • Changedstart_bugfix3 fields changed
      • changedInput schema / properties / analysis_mode / description
        Previous value: -"分析方法。默认 tbp8(丰田问题分析 8 步法)"New value: +"分析方法。默认 src8;tbp8 为兼容别名"
      • addedInput schema / properties / description
        Added value: +{
        +  "description": "Bug 描述(与 error_message 同义;仅传 description 时自动作为错误信息)",
        +  "type": "string"
        +}
      • changedInput schema / properties / error_message / description
        Previous value: -"错误信息"New value: +"错误信息(可与 description 二选一)"
  4. 16 tool updatesv3.6.3
    • Addedcheck_spec
    • Changedcode_insight1 field changed
      • changedInput schema / properties / project_root / description
        Previous value: -"项目根目录。当前客户端未把工作区作为进程 cwd 传进来时,建议显式指定"New value: +"项目根目录绝对路径。建议显式传入;当调用里还包含相对路径参数时,应统一相对该项目根目录解析,避免依赖客户端 cwd。"
    • Addeddelete_memory_asset
    • Changedinit_project1 field changed
      • addedInput schema / properties / project_root
        Added value: +{
        +  "description": "可选。项目根目录绝对路径;未传时自动从 MCP 客户端工作区解析(如 Cursor 注入 WORKSPACE_FOLDER_PATHS、OpenCode/客户端配置的 cwd 等)。仅边缘场景需手动传入。",
        +  "type": "string"
        +}
    • Changedinit_project_context6 fields changed
      • changedInput schema / properties / docs_dir / description
        Previous value: -"文档目录。可选,默认 docs"New value: +"附属文档根目录(project-context、graph-insights)。默认 docs"
      • addedInput schema / properties / filename
        Added value: +{
        +  "description": "高级:与 output_dir 合用,默认 project-context.md",
        +  "type": "string"
        +}
      • addedInput schema / properties / index_style
        Added value: +{
        +  "description": "索引风格:auto(默认 AGENTS.md)、agents、legacy(docs/project-context.md)",
        +  "enum": [
        +    "auto",
        +    "agents",
        +    "legacy"
        +  ],
        +  "type": "string"
        +}
      • addedInput schema / properties / locale
        Added value: +{
        +  "description": "AGENTS.md 语言;默认根据 README 探测",
        +  "enum": [
        +    "en",
        +    "zh-CN"
        +  ],
        +  "type": "string"
        +}
      • addedInput schema / properties / output
        Added value: +{
        +  "description": "高级:索引文件相对路径,如 AGENTS.md",
        +  "type": "string"
        +}
      • addedInput schema / properties / output_dir
        Added value: +{
        +  "description": "高级:索引所在目录,如 .claude/rules",
        +  "type": "string"
        +}
    • Addedmemorize_asset
    • Addedread_memory_asset
    • Addedscan_and_extract_patterns
    • Addedsearch_memory
    • Changedstart_bugfix3 fields changed
      • addedInput schema / properties / docs_dir
        Added value: +{
        +  "description": "文档目录。可选,默认 docs",
        +  "type": "string"
        +}
      • addedInput schema / properties / feature_name
        Added value: +{
        +  "description": "关联功能规格名(对应 docs/specs/<feature_name>/)。提供后或能自动识别时,修复闭环会插入 check_spec 闸门",
        +  "type": "string"
        +}
      • changedInput schema / properties / project_root / description
        Previous value: -"项目根目录。当前客户端未把工作区作为进程 cwd 传进来时,建议显式指定"New value: +"项目根目录绝对路径。建议显式传入;docs_dir 等相对路径参数应统一相对该项目根目录解析,避免依赖客户端 cwd。"
    • Changedstart_feature1 field changed
      • changedInput schema / properties / project_root / description
        Previous value: -"项目根目录。当前客户端未把工作区作为进程 cwd 传进来时,建议显式指定"New value: +"项目根目录绝对路径。建议显式传入;docs_dir 等相对路径参数应统一相对该项目根目录解析,避免依赖客户端 cwd。"
    • Changedstart_onboard1 field changed
      • changedInput schema / properties / project_path / description
        Previous value: -"项目路径。可选,默认当前目录"New value: +"项目根目录绝对路径。建议显式传入;如果还传 docs_dir 等相对路径,应统一相对该项目根目录解析。"
    • Changedstart_ui1 field changed
      • addedInput schema / properties / project_root
        Added value: +{
        +  "description": "项目根目录绝对路径。建议显式传入;如果存在 docs 或模板等相对路径解析,应统一相对该项目根目录处理,避免依赖客户端 cwd。",
        +  "type": "string"
        +}
    • Changedui_search1 field changed
      • changedInput schema / properties / category / description
        Previous value: -"数据类别(仅 search 模式):colors(颜色)、icons(图标)、charts(图表)、landing(落地页)、products(产品)、typography(字体)、styles(样式)、ux-guidelines(UX 指南)、web-interface(Web 界面)等"New value: +"数据类别(search 模式):colors、icons、charts、landing、products、typography、styles、ux-guidelines、shadcn-blocks、shadcn-components、ui-themes、ui-guidelines-vercel 等"
    • Addedupdate_memory_asset
    • Addedworkflow
  5. 40 tool updatesv3.0.16
    • Addedadd_feature
    • Removedanalyze_project
    • Addedask_user
    • Removedcheck_deps
    • Addedcode_insight
    • Changedcode_review3 fields changed
      • addedInput schema / additionalProperties
        Added value: +true
      • changedInput schema / properties / code / description
        Previous value: -"需要审查的代码"New value: +"要审查的代码。可以是代码片段、完整文件或 git diff 输出"
      • changedInput schema / properties / focus / description
        Previous value: -"审查重点:quality, security, performance, all(默认 all)"New value: +"审查重点:security(安全)、performance(性能)、quality(质量)、all(全部)。可选,默认 all"
    • Removedconvert
    • Removeddebug
    • Removeddetect_shell
    • Addedestimate
    • Removedexplain
    • Removedfix
    • Addedfix_bug
    • Removedgenapi
    • Removedgenchangelog
    • Changedgencommit3 fields changed
      • addedInput schema / additionalProperties
        Added value: +true
      • changedInput schema / properties / changes / description
        Previous value: -"代码变更内容(可选,默认使用 git diff)"New value: +"代码变更内容。可以是 git diff 输出、变更描述或自然语言。如果不提供,工具会提示执行 git diff"
      • changedInput schema / properties / type / description
        Previous value: -"提交类型:fixed, fix, feat, docs, style, chore, refactor, test"New value: +"Commit 类型:fixed(修复)、feat(新功能)、docs(文档)、style(样式)、chore(杂项)、refactor(重构)、test(测试)。可选,会自动识别"
    • Removedgendoc
    • Removedgenpr
    • Removedgenreadme
    • Removedgensql
    • Changedgentest3 fields changed
      • addedInput schema / additionalProperties
        Added value: +true
      • changedInput schema / properties / code / description
        Previous value: -"需要测试的代码"New value: +"要生成测试的代码。可以是函数、类或模块"
      • changedInput schema / properties / framework / description
        Previous value: -"测试框架:jest, vitest, mocha(默认 jest)"New value: +"测试框架:jest、vitest、mocha。可选,会自动识别项目使用的框架"
    • Removedgenui
    • Addedgit_work_report
    • Changedinit_project3 fields changed
      • addedInput schema / additionalProperties
        Added value: +true
      • changedInput schema / properties / input / description
        Previous value: -"项目需求描述(可以是文字描述或文件内容)"New value: +"项目需求描述。可以是一句话需求(如'创建电商网站')或简短的功能描述,工具会自动分析并生成详细的规格文档"
      • changedInput schema / properties / project_name / description
        Previous value: -"项目名称"New value: +"项目名称。可选,默认为'新项目'"
    • Addedinit_project_context
    • Removedinit_setting
    • Addedinterview
    • Removedperf
    • Changedrefactor3 fields changed
      • addedInput schema / additionalProperties
        Added value: +true
      • changedInput schema / properties / code / description
        Previous value: -"需要重构的代码"New value: +"要重构的代码"
      • changedInput schema / properties / goal / description
        Previous value: -"重构目标:improve_readability, reduce_complexity, extract_function 等"New value: +"重构目标:improve_readability(可读性)、reduce_complexity(复杂度)、performance(性能)。可选"
    • Removedresolve_conflict
    • Removedsplit
    • Addedstart_bugfix
    • Addedstart_feature
    • Addedstart_onboard
    • Addedstart_product
    • Addedstart_ralph
    • Addedstart_ui
    • Addedsync_ui_data
    • Addedui_design_system
    • Addedui_search
  6. 1 tool updatev1.0.0
    • Changedgencommit1 field changed
      • changedInput schema / properties / type / description
        Previous value: -"提交类型:feat, fix, docs, style, refactor, test, chore"New value: +"提交类型:fixed, fix, feat, docs, style, chore, refactor, test"
  7. 23 tool updates
    • First observedanalyze_project
    • First observedcheck_deps
    • First observedcode_review
    • First observedconvert
    • First observeddebug
    • First observeddetect_shell
    • First observedexplain
    • First observedfix
    • First observedgenapi
    • First observedgenchangelog
    • First observedgencommit
    • First observedgendoc
    • First observedgenpr
    • First observedgenreadme
    • First observedgensql
    • First observedgentest
    • First observedgenui
    • First observedinit_project
    • First observedinit_setting
    • First observedperf
    • First observedrefactor
    • First observedresolve_conflict
    • First observedsplit

TDQS

A3.7/5.0
Disambiguation5/5

Each tool has a clearly defined and distinct purpose, with detailed descriptions that prevent ambiguity. Even closely related tools like start_feature, start_bugfix, and start_product are differentiated by their workflow focus and explicit instructions.

Naming Consistency4/5

Most tools follow a verb_noun or noun_verb pattern (e.g., start_feature, code_review, plan_heartbeat), with consistent group prefixes. A few single-word names like 'converge' and 'architecture' break the pattern, but they are still clear and the overall scheme is predictable.

Tool Count3/5

With 24 tools, the server is on the heavy side of the borderline range (16-25). The broad scope covering initialization, feature management, code review, design, and planning justifies the count, but it could be streamlined by merging some highly related tools.

Completeness4/5

The tool surface covers the core development lifecycle well: planning, specification, coding support, review, testing guidance, and reporting. However, there are gaps in execution phases (e.g., no tool for running tests, building, or deployment), which prevents a perfect score.

Maintenance

ActivityMaintained
ResponsivenessSlow

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    Not graded
    maintenance
    Provides unified development tools including code analysis, debugging, refactoring, documentation, testing, and project automation through multiple LLM providers (KIMI, GLM, OpenRouter). Features agentic audit capabilities with multi-model consensus for finding issues and generating direct fixes.
    -
  • A
    license
    Not graded
    quality
    D
    maintenance
    Provides AI-powered development tools including code generation, refactoring, debugging, performance optimization, and test generation, along with smart prompts for code analysis and documentation, and a built-in knowledge base of coding best practices.
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    A comprehensive toolkit of 23 developer utilities that enables AI assistants to perform tasks like encoding, cryptography, and data generation locally without requiring API keys. It streamlines workflows by providing tools for JWT decoding, UUID generation, regex testing, and JSON formatting directly within the chat interface.
    57
    MIT

Appeared in Searches

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/mybolide/mcp-probe-kit'

If you have feedback or need assistance with the MCP directory API, please join our Discord server