Skip to main content
Zuko publishes an MCP (Model Context Protocol) server at https://docs.tryzuko.com/mcp. Once added, your AI coding agent can search and read the Zuko docs directly — useful when setting up the project locally, configuring services, or navigating the codebase.

What the MCP server provides

ToolDescription
search_zuko_docsSearches the Zuko knowledge base for guides, API references, and code examples
query_docs_filesystem_zuko_docsReads and navigates raw .mdx documentation files

Add to Claude Code

CLI

claude mcp add --transport http ZukoDocs https://docs.tryzuko.com/mcp

Project config

Add to your project’s .mcp.json:
{
  "mcpServers": {
    "ZukoDocs": {
      "type": "http",
      "url": "https://docs.tryzuko.com/mcp"
    }
  }
}

Add to Cursor

Settings UI

Open Cursor Settings → MCP and add a new server.

Config file

{
  "ZukoDocs": {
    "type": "http",
    "url": "https://docs.tryzuko.com/mcp"
  }
}

Add to other MCP-compatible clients

Use the HTTP transport with this URL:
https://docs.tryzuko.com/mcp
Most MCP-compatible clients (Windsurf, Goose, Continue, etc.) support HTTP transport. Refer to your client’s docs for the exact config format.

Example prompts

Once connected, you can ask your agent things like:
  • “How do I set up Zuko locally?”
  • “What environment variables does the backend need?”
  • “How does the AI agents service connect to the backend?”
  • “Walk me through the database migration steps.”
The agent will pull answers directly from the Zuko docs rather than guessing.