> ## Documentation Index
> Fetch the complete documentation index at: https://superflow-claude-superflow-portal-docs-78gpp8.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Connect Claude

> Add the Superflow MCP connector to claude.ai, Claude Code, or the Claude API.

One server URL works everywhere:

```
https://mcp.usesuperflow.ai/mcp
```

## claude.ai

Available on Pro and Max plans, and on Team or Enterprise where an admin has enabled connectors.

<Steps>
  <Step title="Open Settings, then Connectors">
    Click **Add custom connector**.
  </Step>

  <Step title="Paste the server URL">
    Enter `https://mcp.usesuperflow.ai/mcp` and save.
  </Step>

  <Step title="Sign in and approve">
    Claude sends you to Superflow's consent screen. Sign in, pick the workspace to connect, review the [permissions](/mcp/overview#permissions), and click **Approve**.
  </Step>
</Steps>

Then just ask, in any chat: "Run the accessibility and broken links agents on acme.com and summarize what they found."

## Claude Code

<Steps>
  <Step title="Add the server from your terminal">
    ```bash theme={null}
    claude mcp add --transport http superflow https://mcp.usesuperflow.ai/mcp
    ```
  </Step>

  <Step title="Sign in when prompted">
    Claude Code runs the sign-in flow in your browser the first time a Superflow tool is used.
  </Step>
</Steps>

## Claude API

Pass the server in the `mcp_servers` block of a Messages API request, with a matching `mcp_toolset` entry in `tools` (both are required) and the MCP client beta flag:

```json theme={null}
{
  "model": "claude-opus-5",
  "max_tokens": 16000,
  "betas": ["mcp-client-2025-11-20"],
  "mcp_servers": [
    {
      "type": "url",
      "name": "superflow",
      "url": "https://mcp.usesuperflow.ai/mcp",
      "authorization_token": "YOUR_TOKEN"
    }
  ],
  "tools": [{ "type": "mcp_toolset", "mcp_server_name": "superflow" }],
  "messages": [{ "role": "user", "content": "List the projects in my Superflow workspace." }]
}
```

Over raw HTTP, the beta flag goes in a header instead: `anthropic-beta: mcp-client-2025-11-20`. The `authorization_token` is an access token for the Superflow connector obtained through the OAuth sign-in flow; see the [Claude API MCP connector docs](https://platform.claude.com/docs/en/agents-and-tools/mcp-connector) for how clients obtain and refresh it.

<Note>
  Free-plan claude.ai accounts cannot add remote connectors. Upgrade, or use Claude Code, which works on any plan that includes it.
</Note>
