CoinGecko MCP Server

find-coin-ids

Find CoinGecko IDs for a list of coin names or symbols (case-insensitive). Data up to March 9, 2025

Input Schema

NameRequiredDescriptionDefault
coinsYesArray of coin names or symbols to search for (e.g., ['BTC', 'ethereum', 'DOT'])

Input Schema (JSON Schema)

{ "properties": { "coins": { "description": "Array of coin names or symbols to search for (e.g., ['BTC', 'ethereum', 'DOT'])", "items": { "type": "string" }, "maxItems": 100, "type": "array" } }, "required": [ "coins" ], "type": "object" }