Overview
Dograh exposes an MCP (Model Context Protocol) server that lets AI assistants like Claude Code, Claude Desktop, and Cursor access your workspace and documentation. Once connected, an assistant can list your agents, fetch agent definitions, and search Dograh docs on your behalf.Prerequisites
- A Dograh API key. Generate one at
/api-keys(orhttp://localhost:3010/api-keysfor self-hosted). See API Keys. - Your Dograh MCP endpoint:
- Hosted:
https://app.dograh.com/api/v1/mcp/ - Self-hosted:
<YOUR_BACKEND_URL>/api/v1/mcp/
- Hosted:
Claude Code
Register Dograh as an MCP server with the Claude Code CLI:YOUR_API_KEY with the key you generated. For self-hosted deployments, swap the URL for your backend.
Verify the server is connected:
Claude Desktop
Open Claude Desktop’s config file (claude_desktop_config.json) and add the dograh entry under mcpServers:
Cursor and other MCP clients
Any MCP client that supports Streamable HTTP transport can connect with the same URL and header. Paste the configuration above into your client’s MCP settings file and replaceYOUR_API_KEY.
Available tools
Once connected, your AI assistant can:list_workflows— list agents in your workspaceget_workflow— fetch an agent’s definition by IDsearch_dograh_docs— search Dograh documentationfetch_dograh_doc— retrieve a specific doc page
The API key controls which workspace the assistant sees. Treat it like any other credential — do not commit it to source control or paste it into shared chats.