Opus exposes an MCP (Model Context Protocol) server that lets AI-powered development tools search and retrieve content from these docs directly. This means your IDE or AI assistant can pull in relevant Opus documentation as context while you work.
The server is hosted at:
https://developer.opus.com/mcp
Claude Code
Cursor
VS Code
Run the following command in your terminal:claude mcp add --transport http Opus https://developer.opus.com/mcp
Restart Claude Code for the server to become available. You can verify the connection with: Add the following to ~/.cursor/mcp.json:{
"mcpServers": {
"Opus": {
"url": "https://developer.opus.com/mcp",
"type": "http"
}
}
}
Restart Cursor to pick up the new server. Add the following to .vscode/mcp.json in your project root:{
"servers": {
"Opus": {
"type": "http",
"url": "https://developer.opus.com/mcp"
}
}
}
What It Does
Once connected, your AI tool gets access to a search function over the full Opus documentation. This includes guides, API references, task documentation, and integration pages.
You can ask questions like:
- “How do I execute a job via the Opus API?”
- “What task types does Opus support?”
- “How do I set up a workflow with human review?”
The tool will pull in the relevant documentation pages to provide grounded, accurate answers.
Rate Limits
| Scope | Limit |
|---|
| Per user (IP) | 200 requests/hour |
The MCP server is read-only. It provides search access to public documentation and does not interact with the Opus platform API or your workflows.