Wacht Bench is live — AI-assisted development for Wacht
Guides

Docs MCP

Connect AI coding tools to the Wacht documentation through the Wacht Docs MCP server.

Docs MCP

Wacht Docs includes an MCP server so AI coding tools can search and read the current Wacht documentation directly.

Use it when an assistant needs exact Wacht SDK behavior, API contracts, setup steps, or implementation guidance.

Endpoint

https://wacht.dev/docs/mcp

The local development endpoint is:

http://localhost:3000/docs/mcp

Cursor-style configuration

{
  "mcpServers": {
    "wacht-docs": {
      "url": "https://wacht.dev/docs/mcp"
    }
  }
}

Claude Desktop style configuration

{
  "mcpServers": {
    "wacht-docs": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://wacht.dev/docs/mcp"]
    }
  }
}

Available tools

ToolUse it for
search_docsFind relevant Wacht docs pages by topic.
get_docFetch the full processed content of a docs page.
docs_graph_viewMap related docs pages before choosing what to read.

Available prompts

PromptUse it for
mcp_setup_guideGenerate client setup snippets for the Docs MCP server.
docs_graph_navigation_guideTeach an assistant how to search, map, and cite Wacht docs.

Verify the server

Send a JSON-RPC initialize request:

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "initialize",
  "params": {
    "protocolVersion": "2025-03-26",
    "capabilities": {},
    "clientInfo": {
      "name": "your-client",
      "version": "1.0.0"
    }
  }
}

Then list tools:

{
  "jsonrpc": "2.0",
  "id": 2,
  "method": "tools/list",
  "params": {}
}

Add this to your project instructions or skill:

For Wacht-related implementation work, use the wacht-docs MCP server before coding.
Prefer docs_graph_view for broad topics, search_docs for targeted lookup, and get_doc for exact page content.
Cite the Wacht docs pages used when explaining implementation decisions.

Example development request

Use wacht-docs MCP to find the current Wacht Next.js auth and backend auth docs.
Then update this app to protect /account routes and verify the implementation with the repo's typecheck.

Where MCP fits with Skills

MCP gives the assistant current Wacht documentation. Skills give the assistant local project workflow.

Use both:

  • MCP for Wacht facts, SDK usage, API reference, and guide content.
  • Skills for repo-specific rules, file locations, conventions, and validation commands.

Start with Wacht Bench if you are setting up an AI-assisted Wacht workflow from scratch. Use Wacht Skills when you are ready to make that workflow repeatable across coding sessions.

On this page