MCP Hub
Back to servers

mcp-redtrack

Requires Setup

MCP server for RedTrack affiliate tracking API

Registry
Stars
1
Updated
Mar 23, 2026
Validated
Apr 28, 2026

Quick Install

npx -y mcp-redtrack

mcp-redtrack

mcp-redtrack

MCP server for the RedTrack affiliate tracking API. Query campaigns, clicks, conversions, and reports from any MCP-compatible client (Claude Code, Claude Desktop, Cursor, etc.).

Quick start

npx mcp-redtrack setup YOUR_API_KEY

This prints the config snippet for your MCP client.

Claude Code

claude mcp add redtrack -e REDTRACK_API_KEY=YOUR_API_KEY -- npx mcp-redtrack

Claude Desktop / Cursor

Add to your MCP settings JSON:

{
  "mcpServers": {
    "redtrack": {
      "command": "npx",
      "args": ["mcp-redtrack"],
      "env": {
        "REDTRACK_API_KEY": "YOUR_API_KEY"
      }
    }
  }
}

Tools (14)

Campaigns

ToolDescription
get_campaignsList campaigns with filtering by title, status, source, tags, date range
get_campaignGet single campaign by ID with full config
get_campaigns_v2List campaigns via v2 endpoint

Logs

ToolDescription
get_clicksClick-level log with IP, country, device, campaign details (max 10k/page)
get_conversionsConversion log with payout, cost, revenue, attribution (max 10k/page)

Reports

ToolDescription
get_reportAggregated stats grouped by dimension (campaign, offer, country, date, sub1-20, etc.)

Entities

ToolDescription
get_offersList offers with filtering
get_offerSingle offer by ID
get_sourcesList traffic sources
get_sourceSingle source by ID
get_networksList affiliate networks
get_landingsList landing pages
get_settingsAccount settings (timezone, currency, conversion types)

Environment variables

VariableRequiredDefaultDescription
REDTRACK_API_KEYYesYour RedTrack API key
REDTRACK_ENV_FILENo.envPath to .env file

Development

bun install          # install deps
bun run dev          # run MCP server
bun test             # run tests
bun run lint         # check formatting & lint
bun run inspect      # open MCP inspector
bun run build        # compile standalone binary
bun run build:npm    # bundle for Node.js / npm

License

MIT

Reviews

No reviews yet

Sign in to write a review