get_market_data
ActiveTool of Coingecko
declared in 0.1.0
Get top cryptocurrencies ranked by market cap with current prices, 24h changes, and volume. Example: get_market_data({ vs_currency: "usd", limit: 10 })
Parameters schema
{
"type": "object",
"examples": [
{
"limit": 10,
"vs_currency": "usd"
},
{
"limit": 25,
"order": "volume_desc",
"vs_currency": "eur"
}
],
"required": [],
"properties": {
"limit": {
"type": "number",
"description": "Number of coins to return, 1-250 (default: 20)"
},
"order": {
"type": "string",
"description": "Sort order: \"market_cap_desc\", \"volume_desc\", \"price_desc\" (default: \"market_cap_desc\")"
},
"vs_currency": {
"type": "string",
"description": "Currency to show prices in, e.g. \"usd\", \"eur\", \"btc\" (default: \"usd\")"
}
}
}Parent server
Coingecko
https://github.com/pipeworx-io/mcp-coingecko
1/7 registries