The two directions
1. Drive Duvo from an MCP host — the Duvo MCP server
Duvo runs a hosted MCP server. Connect a host like Claude Desktop, Claude Code, Cursor, or ChatGPT to it, and every Duvo Public API endpoint becomes a tool that host can call — start Jobs, inspect Cases, manage Files, all from an assistant chat. This is the main way teams use MCP with Duvo, and it’s the counterpart to the Duvo CLI: another way to operate Duvo from outside the dashboard. Start here: The Duvo MCP server.2. Bring your own MCP into Duvo — Custom MCP Connections
Run an MCP server of your own — for an internal system, a legacy platform, or a custom API — and add it to Duvo as a Connection. Your Assignments then call its tools alongside built-in Connections like Gmail or Snowflake. Start here: Connect a custom MCP to Duvo, and Build an MCP server for Duvo if you’re implementing the server yourself.Which direction do you need?
| You want to… | Go to |
|---|---|
| Drive Duvo from Claude Desktop, Claude Code, Cursor, ChatGPT connectors, or another host | The Duvo MCP server |
| See exactly which Duvo actions are available as MCP tools | Available MCP Tools |
| Call Duvo Assignments as tools from your own AI agent or copilot | Embedding Duvo as a tool |
| Let your Duvo Assignments call tools from a custom internal system | Connect a custom MCP to Duvo |
| Build an MCP server from scratch to expose your own tools | Build an MCP server for Duvo |
The two directions at a glance
| Duvo as MCP server | Custom MCP Connections | |
|---|---|---|
| Who runs the server | Duvo | You |
| Endpoint | https://api.duvo.ai/v2/mcp | A public HTTPS URL you provide |
| What tools it exposes | Every Duvo Public API endpoint | Whatever your MCP server implements |
| Who’s the client (host) | Claude Desktop, Claude Code, Cursor, ChatGPT connectors, or any MCP-compatible app | Duvo Assignments |
| Authentication | OAuth or API key | None, API key, custom headers, or OAuth (DCR-aware) |
| Setup time | Minutes — paste the URL into your MCP host | Minutes once your server is deployed and reachable |
How MCP fits alongside the CLI and API
MCP is one of three ways to drive Duvo from outside the dashboard, all built on the same Public API:- The Duvo MCP server is a thin layer over the Public API — the same authentication, rate limits, and permissions apply. Best when you want to operate Duvo conversationally from an AI host.
- The Duvo CLI wraps the same API for terminal-first and CI/CD workflows.
- The Public API itself is the foundation both build on — use it directly when you’re writing your own integration.
Related
- The Duvo MCP server — connect a host and start calling Duvo tools
- Custom MCP connection page — Custom MCP in the Available Connections catalog
- Public API Reference — the API both the MCP server and CLI wrap