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.

doc0_query_graph

Hybrid search over the code symbol graph. Returns ranked symbols (functions, classes, methods) by name and kind.

doc0_symbol_context

Get callers, callees, and community label for a specific code symbol — the local neighborhood around it.

doc0_impact_analysis

BFS over the call graph to estimate the blast radius of changing a symbol. Summary or full traversal.

doc0_list_processes

List the workflow processes detected in the codebase (multi-step call chains across modules).

doc0_get_process

Fetch the full ordered step list for a detected process by its label.

Setup

Claude Code

Run this command in your terminal:

claude mcp add -s user -t http drizzle-orm https://www.doc0.app/api/mcp/e1b68fed-3c4e-4c95-b2ba-ebf050f78025/mcp

Cursor

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

{
  "mcpServers": {
    "drizzle-orm": {
      "url": "https://www.doc0.app/api/mcp/e1b68fed-3c4e-4c95-b2ba-ebf050f78025/mcp"
    }
  }
}

Windsurf

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

{
  "mcpServers": {
    "drizzle-orm": {
      "url": "https://www.doc0.app/api/mcp/e1b68fed-3c4e-4c95-b2ba-ebf050f78025/mcp"
    }
  }
}

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "drizzle-orm": {
      "url": "https://www.doc0.app/api/mcp/e1b68fed-3c4e-4c95-b2ba-ebf050f78025/mcp"
    }
  }
}