Skip to main content

Documentation Index

Fetch the complete documentation index at: https://onlytraffic.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Claude supports MCP both in the web app (Pro / Max / Team plans) and on the desktop app. Pick the path that matches your setup.

Claude.ai (web)

Available on Pro, Max and Team plans. The web app talks to remote MCP servers natively, no bridge required.
1

Open Connectors

In Claude.ai, click your profile (bottom-left) → SettingsConnectors.
2

Add a custom connector

Scroll to the bottom and click Add custom connector.
FieldValue
NameOnlyTraffic Studio
URLhttps://studio-api.onlytraffic.com/mcp
3

Authorize

Claude opens the OnlyTraffic authorize page in a popup. Paste your Studio API key (create one here) and click Authorize.The popup closes and the connector turns green.
4

Try it

Start a new chat and ask, for example:
Show me my last 7 days of CPL orders, grouped by status.
Claude will figure out how to answer from your Studio data.
Connectors are remembered per-organization. If a teammate adds the same connector with their own API key, the data stays scoped to their account, not yours.

Claude Desktop

Claude Desktop (macOS / Windows) talks to local MCP servers over stdio. To reach our remote server, use the mcp-remote bridge.
1

Open the config

Open the Claude Desktop config file:
  • macOS~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows%APPDATA%\Claude\claude_desktop_config.json
Create the file if it doesn’t exist.
2

Add the MCP server

Add an entry under mcpServers:
{
  "mcpServers": {
    "onlytraffic-studio": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://studio-api.onlytraffic.com/mcp"
      ]
    }
  }
}
mcp-remote is a small Node bridge that translates stdio MCP into HTTP MCP and handles the OAuth dance for you. It runs locally, no data goes through any third party.
3

Restart Claude Desktop

Fully quit and reopen Claude. The first time you ask Claude to use a Studio tool, your browser opens to the authorize page. Paste your API key and confirm.
4

Try it

In a new chat, ask:
List my OnlyFans accounts and their last subscriber counts.
Claude will pull the answer from your Studio data.

Revoking access

To disconnect Claude from your Studio account:
  1. Go to Studio → API.
  2. Revoke the API key Claude is using. All Claude sessions tied to that key stop working immediately.
You can also remove the connector from Claude’s settings — that’s enough if you only want to disconnect this client and keep the key.