Instruction Tools
The 20 instruction tools are the public surface of the server. Each tool accepts a { request: string; context?: string; options?: object } payload and internally orchestrates skills.
Tool Registry
Section titled “Tool Registry”Start here at the beginning of a new session. These tools orient the model to the project and route subsequent requests.
task-bootstrap Bootstrap: First Contact — Zero-Cost. Onboards the model to a new session and project context.
meta-routing Meta-Routing: Task Router — Efficient. Routes any ad-hoc request to the right specialized tool.
project-onboard Onboard: Project Familiarization — Zero-Cost. Deep-reads codebase structure, conventions, and history.
General-purpose and specialist task tools. Start with one of the high-frequency entries.
system-design Design: Architecture and System Design — Advanced
feature-implement Implement: Build New Feature or Tool — Advanced
evidence-research Research: Synthesis, Comparison, Recommendations — Advanced
code-review Review: Code, Quality, and Security Review — Cross-Model
strategy-plan Plan: Strategy, Roadmap, and Sprint Planning — Advanced
issue-debug Debug: Diagnose and Fix Problems — Efficient
code-refactor Refactor: Improve Existing Code Safely — Efficient
test-verify Testing: Write, Run, and Verify Tests — Efficient
docs-generate Document: Generate Documentation Artifacts — Efficient
quality-evaluate Evaluate: Benchmark and Assess Quality — Cross-Model
prompt-engineering Prompt Engineering: Build, Evaluate, and Optimize — Efficient
agent-orchestrate Orchestrate: Compose Multi-Agent Workflows — Advanced
enterprise-strategy Enterprise: Leadership and Enterprise Scale — Advanced
policy-govern Govern: Safety, Compliance, and Guardrails — Advanced
fault-resilience Resilience: Self-Healing and Fault Tolerance — Advanced
routing-adapt Adapt: Bio-Inspired Adaptive Routing — Advanced
physics-analysis Physics Analysis: QM and GR Code Metaphors — Advanced
Read-only introspection tools that operate on the MCP server’s internal state rather than producing advisory outputs.
agent-memory Persistent cross-session TOON artifact store — list, read, find, write, enrich, delete
graph-visualize Generate Mermaid diagrams for chain graphs, skill graphs, and domain views
Input Schema
Section titled “Input Schema”All tools share the same input schema:
{ "request": "string (required)", "context": "string (optional)", "options": "object (optional, tool-specific)"}