https://api.duvo.ai/v2/mcp. Connect to it from any MCP-compatible host — Claude Desktop, Cursor, ChatGPT connectors, your own client — and every Duvo Public API endpoint becomes a tool the host can call.
Use this to:
- Drive Duvo Assignments from an AI assistant chat (“Start the invoice processor on yesterday’s batch and tell me when it’s done.”)
- Inspect Jobs, Cases, and Files conversationally
- Build hybrid workflows where one assistant orchestrates Duvo Assignments alongside other tools
What you can do
Every endpoint registered in the Public API is auto-exposed as an MCP tool. That includes:- Assignments — list, get, create, update
- Jobs — start, get status, send messages, respond to human-in-the-loop requests, stop
- Connections — list and inspect your authorized accounts
- Files — list, read, write, rename, delete
- Cases and Queues — inspect, delegate, label
- Skills, Plugins, Sandboxes — list and reference
Server URL
POST /v2/mcp). Most modern MCP hosts support this transport out of the box.
The earlier
https://api.duvo.ai/v1/mcp endpoint still works, so existing
setups keep running unchanged. New connections should use /v2/mcp.Authentication
The Duvo MCP server accepts two credential types:Option 1 — OAuth (recommended for personal use)
Recommended for hosts that prompt you to sign in (Claude Desktop, Cursor, ChatGPT connectors). The host runs a one-time browser-based sign-in to Duvo, then handles token refresh and revocation for you. No API key to copy or rotate. The exact steps depend on the host. In general:- Add
https://api.duvo.ai/v2/mcpas the MCP server URL in your host’s settings. - The host detects the OAuth challenge and opens a browser tab to Duvo’s sign-in page.
- Sign in and approve the connection.
- The host stores the OAuth tokens and uses them automatically on every tool call.
https://api.duvo.ai/.well-known/oauth-protected-resource/v2/mcp (RFC 9728). Compliant MCP hosts use this to discover the authorization server and register themselves via Dynamic Client Registration automatically.
Option 2 — API key (recommended for scripts and service accounts)
Use API keys when the host doesn’t support OAuth, or for non-interactive use (CI, service accounts).- Generate a key in the Duvo dashboard at Team Settings → API Keys.
-
Configure the MCP host to send the key as a bearer token in the
Authorizationheader: - The host can then call Duvo MCP tools without any further sign-in.
Setup by host
The MCP standard means the same Duvo URL works in every compliant host. Configuration syntax differs slightly between products, so check your host’s MCP setup guide for the exact field names. Common patterns:Claude Desktop
Edit your Claude Desktop config (claude_desktop_config.json):
Claude Code
Add the Duvo server from your terminal with theclaude mcp add command:
Cursor
In Cursor settings, open the MCP servers section, add a new server with the URLhttps://api.duvo.ai/v2/mcp, and let Cursor run the OAuth flow.
ChatGPT (Custom Connector)
Add a Custom Connector pointing tohttps://api.duvo.ai/v2/mcp. ChatGPT handles Dynamic Client Registration and the OAuth flow automatically.
Custom MCP host or script
Any MCP-compatible client library (TypeScript, Python, etc.) can connect — point it athttps://api.duvo.ai/v2/mcp, supply either an OAuth token or an API key, and call tools/list to discover what’s available.
Tool ergonomics
Tools follow the underlying Public API:- Tool names map to OpenAPI
operationIds (for example,listAgents,startRun,getConnection). - Tool descriptions come from each endpoint’s OpenAPI description.
- Input schemas are flat — path parameters, query parameters, and request body are merged into a single object so calls read naturally (
startRun({ agent_id: "...", input: "..." })rather than wrapping each section). - Responses match the corresponding API response. Use the Public API Reference for the exact shapes.
Limits and behavior
- All Public API rate limits apply to MCP tool calls.
- Every tool call respects the permissions of the authenticating user, just like a direct API call.
- Long-running Jobs are not streamed over MCP today — start the Job via the tool, then poll
getRunorlistRunMessagesto monitor progress.
Troubleshooting
- 401 Unauthorized — Your token is missing, expired, or for a different audience. Re-run OAuth, or regenerate the API key in the dashboard.
- 403 Forbidden — Your account doesn’t have permission to call this endpoint. Check your team role and Connection permissions.
- OAuth doesn’t open a browser — The host may not support Dynamic Client Registration. Fall back to API key authentication, or check the host’s docs for OAuth setup steps.
Privacy and terms
- Privacy Policy — how Duvo handles data accessed through the MCP server.
- Terms of Use — the terms that apply to Duvo API and MCP usage.
Related
- Available MCP Tools — the full catalog of tools this server exposes
- Connect a custom MCP to Duvo — the other direction: bring your own MCP server into Duvo
- Public API Reference — the API the Duvo MCP server wraps
- Duvo CLI — terminal-first wrapper over the same API