listings_latest
Pack: coinmarketcap · Endpoint: https://gateway.pipeworx.io/coinmarketcap/mcp
Top-ranked coins by market cap.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
start | number | no | 1-based rank offset (default 1) |
limit | number | no | 1-5000 (default 20) |
sort | string | no | market_cap | volume_24h | percent_change_24h | name | symbol |
convert | string | no | Quote currency (default USD) |
Example call
curl -X POST https://gateway.pipeworx.io/coinmarketcap/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"listings_latest","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
data | array | Array of top-ranked cryptocurrencies |
status | object |
Full JSON Schema
{
"type": "object",
"properties": {
"data": {
"type": "array",
"description": "Array of top-ranked cryptocurrencies",
"items": {
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "CMC cryptocurrency ID"
},
"name": {
"type": "string",
"description": "Cryptocurrency name"
},
"symbol": {
"type": "string",
"description": "Ticker symbol"
},
"slug": {
"type": "string",
"description": "URL-friendly slug"
},
"cmc_rank": {
"type": "integer",
"description": "Market cap rank"
},
"num_market_pairs": {
"type": "integer",
"description": "Number of trading pairs"
},
"circulating_supply": {
"type": "number",
"description": "Circulating supply"
},
"total_supply": {
"type": "number",
"description": "Total supply"
},
"max_supply": {
"type": [
"number",
"null"
],
"description": "Maximum supply cap"
},
"last_updated": {
"type": "string",
"description": "Last update ISO timestamp"
},
"date_added": {
"type": "string",
"description": "Date added to CMC"
},
"tags": {
"type": "array",
"description": "Associated tags",
"items": {
"type": "string"
}
},
"platform": {
"type": [
"object",
"null"
],
"description": "Blockchain platform info"
},
"quote": {
"type": "object",
"description": "Price quotes in requested currency"
}
}
}
},
"status": {
"type": "object",
"properties": {
"timestamp": {
"type": "string",
"description": "ISO timestamp of the quote"
},
"error_code": {
"type": "integer",
"description": "Error code (0 for success)"
},
"error_message": {
"type": [
"string",
"null"
],
"description": "Error message if applicable"
},
"elapsed": {
"type": "integer",
"description": "Elapsed milliseconds"
},
"credit_count": {
"type": "integer",
"description": "API credits consumed"
}
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"coinmarketcap": {
"url": "https://gateway.pipeworx.io/coinmarketcap/mcp"
}
}
}
See Getting Started for client-specific install steps.