Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"redtrack": {
"env": {
"REDTRACK_API_KEY": "YOUR_API_KEY"
},
"args": [
"mcp-redtrack"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
This prints the config snippet for your MCP client.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'mcp-redtrack' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked mcp-redtrack against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in marketing / analytics
MCP Server for GCP environment for interacting with various Observability APIs.
DataForSEO API modelcontextprotocol server
MCP server for InsightSentry financial data API - market data, options, screeners, and more
MCP server for the PostFast API — schedule and manage social media posts via AI tools
MCP Security Weekly
Get CVE alerts and security updates for MCP server for RedTrack affiliate tracking API and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
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.).
npx mcp-redtrack setup YOUR_API_KEY
This prints the config snippet for your MCP client.
claude mcp add redtrack -e REDTRACK_API_KEY=YOUR_API_KEY -- npx mcp-redtrack
Add to your MCP settings JSON:
{
"mcpServers": {
"redtrack": {
"command": "npx",
"args": ["mcp-redtrack"],
"env": {
"REDTRACK_API_KEY": "YOUR_API_KEY"
}
}
}
}
| Tool | Description |
|---|---|
get_campaigns | List campaigns with filtering by title, status, source, tags, date range |
get_campaign | Get single campaign by ID with full config |
get_campaigns_v2 | List campaigns via v2 endpoint |
| Tool | Description |
|---|---|
get_clicks | Click-level log with IP, country, device, campaign details (max 10k/page) |
get_conversions | Conversion log with payout, cost, revenue, attribution (max 10k/page) |
| Tool | Description |
|---|---|
get_report | Aggregated stats grouped by dimension (campaign, offer, country, date, sub1-20, etc.) |
| Tool | Description |
|---|---|
get_offers | List offers with filtering |
get_offer | Single offer by ID |
get_sources | List traffic sources |
get_source | Single source by ID |
get_networks | List affiliate networks |
get_landings | List landing pages |
get_settings | Account settings (timezone, currency, conversion types) |
| Variable | Required | Default | Description |
|---|---|---|---|
REDTRACK_API_KEY | Yes | — | Your RedTrack API key |
REDTRACK_ENV_FILE | No | .env | Path to .env file |
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
MIT