> ## Documentation Index
> Fetch the complete documentation index at: https://developer.opus.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Opus Docs MCP Server

> Connect Opus documentation to AI-powered development tools using the Model Context Protocol.

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
```

## Connect Your Tools

<Tabs>
  <Tab title="Claude Code">
    Run the following command in your terminal:

    ```bash theme={null}
    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:

    ```bash theme={null}
    claude mcp list
    ```
  </Tab>

  <Tab title="Cursor">
    Add the following to `~/.cursor/mcp.json`:

    ```json theme={null}
    {
      "mcpServers": {
        "Opus": {
          "url": "https://developer.opus.com/mcp",
          "type": "http"
        }
      }
    }
    ```

    Restart Cursor to pick up the new server.
  </Tab>

  <Tab title="VS Code">
    Add the following to `.vscode/mcp.json` in your project root:

    ```json theme={null}
    {
      "servers": {
        "Opus": {
          "type": "http",
          "url": "https://developer.opus.com/mcp"
        }
      }
    }
    ```
  </Tab>
</Tabs>

## 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 |

<Note>
  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.
</Note>
