Carbon Copy MCP Server
OfficialServer Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| CARBONCOPY_API_KEY | Yes | Your Carbon Copy API key (format: cc_<64 hex chars>) | |
| CARBONCOPY_BASE_URL | No | Override the default API origin | https://carboncopy.inc |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| resources | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_portfolioA | Retrieve the current portfolio summary including total value, P&L, and allocation. |
| get_portfolio_historyA | Retrieve paginated copy-trade history (individual trade records) with optional date filtering. For portfolio value over time, use get_pnl_history instead. |
| get_positionsA | Retrieve live open portfolio positions (mark-to-market) with optional filtering. status=closed currently returns an empty set. |
| get_pnl_historyA | Retrieve time-series portfolio P&L data for charting performance over time. Returns snapshots with realized/unrealized P&L breakdown. |
| close_positionA | Close an open position by selling shares back to the market. |
| get_pnl_by_traderA | Get a breakdown of realized P&L grouped by each trader you copy. |
| get_pnl_by_marketA | Get a breakdown of realized P&L grouped by each market you have traded. |
| list_tradersA | List all traders you are currently following. |
| discover_tradersB | Search and rank traders available to follow. |
| follow_traderB | Start copy-trading a Polymarket trader by their wallet address. |
| get_traderA | Retrieve details about a specific trader you are following. |
| get_trader_performanceB | Retrieve performance metrics and history for a trader. |
| update_traderA | Update copy-trading settings for a trader you are following. |
| unfollow_traderA | Stop copy-trading a trader and remove them from your follow list. |
| pause_traderA | Pause copy-trading for a specific trader without unfollowing them. |
| resume_traderA | Resume copy-trading for a previously paused trader. |
| batch_update_tradersB | Update settings across multiple followed traders in one request. |
| list_ordersA | Retrieve a list of copy-trade orders with optional status filter, pagination, and date range. |
| get_orderA | Retrieve details about a specific copy-trade order by ID. |
| get_accountA | Retrieve your Carbon Copy account details including wallet address, balance, and settings. |
| healthA | Check the health and availability of the Carbon Copy API. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| portfolio | Current portfolio snapshot including total value, P&L, and allocation. |
| traders | List of all traders you are currently following. |
TDQS
Scored across 21 tools
Most tools have clear, distinct purposes (positions vs. portfolio vs. traders vs. orders). However, get_portfolio_history and get_pnl_history have overlapping names despite explicit description disambiguation, and get_trader vs. get_trader_performance could be misselected if read quickly.
The set predominantly uses consistent verb_noun snake_case (get_, list_, close_, follow_, etc.). Minor deviations include the bare noun 'health' and the slightly awkward 'batch_update_traders' alongside 'update_trader', but the overall pattern is predictable.
At 21 tools, the set is on the heavier side but remains reasonable for a copy-trading platform. Each tool handles a distinct resource or action, and the count does not feel bloated.
The domain is well-covered: full trader lifecycle (discover/follow/update/pause/resume/unfollow), portfolio and P&L reporting, position management with closing, order lookup, and account access. No critical operations appear missing.