Use Claude with Revshare

Connect Claude to the Revshare MCP server so you can read your program data and take actions in natural language — from Claude.ai on the web, Claude Desktop, or Claude Code.

Overview

Revshare exposes a single Streamable HTTP MCP endpoint. Point any Claude client at it and authenticate with your personal API key — the key determines whether you connect as an advertiser or an affiliate publisher, and which tools you get.

https://revshare.so/api/mcp

Get your API key

Your key looks like rs_…. Keep it secret — anyone with it can act as your account.

Claude.ai (web)

On a paid Claude plan, open Settings → Connectors → Add custom connector. This server authenticates with API keys rather than OAuth, so paste the endpoint with your key appended as a ?key= parameter instead of relying on a sign-in popup:

https://revshare.so/api/mcp?key=rs_your_api_key_here

Claude Desktop

Open Settings → Developer → Edit Config and add Revshare to your claude_desktop_config.json with the key as a bearer header, then restart Claude:

{
  "mcpServers": {
    "revshare": {
      "type": "http",
      "url": "https://revshare.so/api/mcp",
      "headers": {
        "Authorization": "Bearer rs_your_api_key_here"
      }
    }
  }
}

Claude Code

Add the remote server from your terminal:

claude mcp add --transport http revshare https://revshare.so/api/mcp \
  --header "Authorization: Bearer rs_your_api_key_here"

What you can do

Once connected, ask Claude about program performance, affiliates, payouts, attribution, and conversion links (advertisers) or your joined programs, applications, and earnings (affiliates). See the full MCP tool reference, or the role guides for advertisers and affiliates.