CoinMarketCap MCP

by shinzo-labs
Verified

allCryptocurrencyListings

Returns a paginated list of all active cryptocurrencies with latest market data.

Input Schema

NameRequiredDescriptionDefault
auxNo
circulating_supply_maxNo
circulating_supply_minNo
convertNo
convert_idNo
cryptocurrency_typeNo
limitNo
market_cap_maxNo
market_cap_minNo
percent_change_24h_maxNo
percent_change_24h_minNo
price_maxNo
price_minNo
sortNo
sort_dirNo
startNo
tagNo
volume_24h_maxNo
volume_24h_minNo

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "aux": { "type": "string" }, "circulating_supply_max": { "type": "number" }, "circulating_supply_min": { "type": "number" }, "convert": { "type": "string" }, "convert_id": { "type": "string" }, "cryptocurrency_type": { "type": "string" }, "limit": { "maximum": 5000, "minimum": 1, "type": "number" }, "market_cap_max": { "type": "number" }, "market_cap_min": { "type": "number" }, "percent_change_24h_max": { "type": "number" }, "percent_change_24h_min": { "type": "number" }, "price_max": { "type": "number" }, "price_min": { "type": "number" }, "sort": { "enum": [ "market_cap", "name", "symbol", "date_added", "price", "circulating_supply", "total_supply", "max_supply", "num_market_pairs", "volume_24h", "percent_change_1h", "percent_change_24h", "percent_change_7d" ], "type": "string" }, "sort_dir": { "enum": [ "asc", "desc" ], "type": "string" }, "start": { "type": "number" }, "tag": { "type": "string" }, "volume_24h_max": { "type": "number" }, "volume_24h_min": { "type": "number" } }, "type": "object" }