CoinMarketCap

live CryptoMarkets

Crypto prices, market cap, rankings, categories. Free Basic plan = 10k credits/month.

6 tools
0ms auth
free tier 50 calls/day
🔑 Authentication

Platform key handled by Pipeworx. Or BYO: ?_apiKey=<key>.

Config with credentials
{
  "mcpServers": {
    "pipeworx-coinmarketcap": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote@latest",
        "https://gateway.pipeworx.io/coinmarketcap/mcp?_apiKey=your_key"
      ]
    }
  }
}

Tools

quotes

Latest market quotes by symbol or CMC id.

Parameters
Name Type Description
symbol opt string
id opt string
convert opt string
Try it
listings_latest

Top-ranked coins by market cap.

Parameters
Name Type Description
start opt number
limit opt number 1-5000
sort opt string
convert opt string
Try it
metadata

Coin profile / logo / social.

Parameters
Name Type Description
symbol opt string
id opt string
Try it
global_metrics

Total market cap, dominance, active cryptos.

Parameters
Name Type Description
convert opt string
Try it
categories

List meta-categories.

Parameters
Name Type Description
start opt number
limit opt number
Try it
category required: id

Coins in a category.

Parameters
Name Type Description
id req string
convert opt string
Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/coinmarketcap/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/coinmarketcap/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"quotes","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("quotes", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("crypto prices, market cap, rankings, categories");