Dev Docs MCP
You can use Duda's Developr Docs Model Context Protocol (MCP) to help develop against the Duda API. This enables AI-powered code editors like Cursor and Windsurf, plus general-purpose tools like Claude, to interact directly with your Developer Docs API and documentation.
Developer Docs MCP Server Setup
Developer Docs hosts a remote MCP server at https://developer.duda.co/mcp
. Configure your AI development tools to connect to this server. If your APIs require authentication, you can pass in headers via query parameters or however headers are configured in your MCP client.
Add to~/.cursor/mcp.json
:
{
"mcpServers": {
"duda-dev-docs": {
"url": "https://developer.duda.co/mcp"
}
}
}
Testing Your MCP Setup
Once configured, you can test your MCP server connection:
- Open your AI editor (Cursor, Windsurf, Claude etc.)
- Start a new chat with the AI assistant
- Ask about Developer Docs - try questions like:
- "How do I [common use case]?"
- "Show me an example of [API functionality]"
- "Create a [integration type] using Developer Docs"
The AI should now access your Developer Docs account data and documentation through the MCP server.
Updated about 10 hours ago