CoinMarketCap
liveCryptoMarketsCrypto prices, market cap, rankings, categories. Free Basic plan = 10k credits/month.
6tools
0msauth
free tier50 calls/day
Authentication
Platform key handled by Pipeworx. Or BYO: ?_apiKey=<key>.
Config with credentials
{
"mcpServers": {
"pipeworx-coinmarketcap": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://gateway.pipeworx.io/coinmarketcap/mcp?_apiKey=your_key"
]
}
}
}Tools
quotesLatest market quotes by symbol or CMC id.
Parameters
NameTypeDescription
symboloptstring—idoptstring—convertoptstring—Try it
Response
listings_latestTop-ranked coins by market cap.
Parameters
NameTypeDescription
startoptnumber—limitoptnumber1-5000sortoptstring—convertoptstring—Try it
Response
metadataCoin profile / logo / social.
Parameters
NameTypeDescription
symboloptstring—idoptstring—Try it
Response
global_metricsTotal market cap, dominance, active cryptos.
Parameters
NameTypeDescription
convertoptstring—Try it
Response
categoriesList meta-categories.
Parameters
NameTypeDescription
startoptnumber—limitoptnumber—Try it
Response
categoryrequired: idCoins in a category.
Parameters
NameTypeDescription
idreqstring—convertoptstring—Try it
Response
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");