npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@carbon-copy/mcp

v0.4.0

Published

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

Readme

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 live positions value and unrealised 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, positions value, unrealised P&L, win rate | | get_portfolio_history | Paginated trade history with optional date filtering | | get_positions | Open positions with pagination |

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_<64 hex chars>). 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