Skip to main content
doc0doc0
Sign in

Connect with MCP

Use the Model Context Protocol to give AI tools direct access to this project's documentation. Search pages, list the full table of contents, or fetch any page's content.

Available modes: technical, user_guide. Pass the mode parameter to each tool to select which documentation to query.

Available tools

doc0_get_minimal_context

Project orientation — call this first. Returns project info, current state, top sections, and suggested next tools.

doc0_search_docs

Search the documentation using hybrid vector + full-text retrieval. Returns matching page slugs, titles, and relevance scores.

doc0_list_pages

List all documentation pages grouped by section.

doc0_get_page

Get the full markdown content of a specific documentation page by its slug.

Setup

Claude Code

Run this command in your terminal:

claude mcp add -s user -t http fumadocs https://www.doc0.app/api/mcp/e8872a72-1909-479c-b585-dc74c6e26726/mcp

Cursor

Add to .cursor/mcp.json in your project:

{
  "mcpServers": {
    "fumadocs": {
      "url": "https://www.doc0.app/api/mcp/e8872a72-1909-479c-b585-dc74c6e26726/mcp"
    }
  }
}

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "fumadocs": {
      "url": "https://www.doc0.app/api/mcp/e8872a72-1909-479c-b585-dc74c6e26726/mcp"
    }
  }
}

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "fumadocs": {
      "url": "https://www.doc0.app/api/mcp/e8872a72-1909-479c-b585-dc74c6e26726/mcp"
    }
  }
}