AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Carboncopy Mcp

mcp-carboncopyinc-carboncopy-mcp · by CarbonCopyInc

MCP server for the Carbon Copy API — programmatic Polymarket copy-trading for AI agents

No reviews yet
0 installs
10 views
0.0% view→install

Install

$ agentstack add mcp-carboncopyinc-carboncopy-mcp

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-carboncopyinc-carboncopy-mcp)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Carboncopy Mcp? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Carbon Copy MCP Server

An MCP server that gives AI agents programmatic access to Carbon Copy — a Polymarket copy-trading platform.

Features

  • Portfolio Management — View portfolio summary (including exposure, gross volume, and unrealized P&L), open positions, and trade history
  • Trader Discovery — Search and filter traders by profit, ROI, win rate, volume, and followers
  • Follow Management — Follow/unfollow traders, pause/resume copy trading, adjust per-trader settings
  • Batch Operations — Update up to 100 followed traders in a single call
  • Performance Analytics — Trader P&L history, drawdown, and Sharpe ratio
  • Order Tracking — List and inspect copy trade orders with filtering
  • Account Info — Access account details
  • Cursor Pagination — Iterate through large datasets efficiently

Quick Start

Prerequisites

  1. A Carbon Copy account
  2. An API key (generate from the dashboard)

Usage with Claude Desktop

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "carboncopy": {
      "command": "npx",
      "args": ["-y", "@carbon-copy/mcp"],
      "env": {
        "CARBONCOPY_API_KEY": "cc_your_key_here"
      }
    }
  }
}

Usage with Cursor

Add to .cursor/mcp.json in your project:

{
  "mcpServers": {
    "carboncopy": {
      "command": "npx",
      "args": ["-y", "@carbon-copy/mcp"],
      "env": {
        "CARBONCOPY_API_KEY": "cc_your_key_here"
      }
    }
  }
}

Available Tools

Portfolio

| Tool | Description | |------|-------------| | get_portfolio | Portfolio summary: balance, exposure, gross volume, and P&L | | get_portfolio_history | Paginated trade history with optional date filtering | | get_positions | Live open positions with optional filters |

Trader Discovery

| Tool | Description | |------|-------------| | discover_traders | Search/filter traders by profit, ROI, win rate, volume, followers | | get_trader_performance | Detailed performance analytics and P&L history for a trader |

Follow Management

| Tool | Description | |------|-------------| | list_traders | All followed traders with copy settings and stats | | follow_trader | Start following a trader | | get_trader | Details for a single followed trader | | update_trader | Update copy trading settings for a followed trader | | batch_update_traders | Update up to 100 followed traders in one call | | unfollow_trader | Stop following a trader | | pause_trader | Pause copy trading for a trader (without unfollowing) | | resume_trader | Resume copy trading for a paused trader |

Orders & Account

| Tool | Description | |------|-------------| | list_orders | Paginated orders with optional status/date filters | | get_order | Single order details | | get_account | Account information | | health | API health check |

Resources

| URI | Description | |-----|-------------| | carboncopy://portfolio | Current portfolio snapshot | | carboncopy://traders | Followed traders list |

Development

npm install
npm run build
npm run dev           # Watch mode
npm test              # Run tests

Authentication

All tools authenticate via CARBONCOPY_API_KEY (format: cc_). Generate keys from the Carbon Copy dashboard.

API keys carry scoped permissions (portfolio, traders, orders, markets, account). Tools return a 403 permission error if your key lacks the required scope.

You can override the default API origin with CARBONCOPY_BASE_URL (defaults to https://carboncopy.inc).

Rate Limits

The API enforces rate limits (60 reads/min, 20 writes/min). The MCP server surfaces rate limit errors transparently — retry after the indicated delay.

Links

License

MIT

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.