Cryptocurrency data via CoinGecko API v3 (free tier, no key required for basic use). Operations: price (current price in any currency), market (market data list), coin (detailed coin info), history (historical OHLCV), trending (trending coins), search (search coins), categories (coin categories), exchanges (exchange list), global (global market stats).
coingeckocryptobitcoinpricesfinance
Input Parameters
Parameter
Type
Description
operationrequired
string
price: current price; market: market cap list; coin: full coin data; history: OHLCV; trending: trending coins; search: search by name; categories: coin categories; exchanges: exchange list; global: market overview. One of: price, market, coin, history, trending, search, categories, exchanges, global.
apiKeyoptional
string
CoinGecko API key (optional, for Pro plan higher rate limits).
coinIdoptional
string
CoinGecko coin ID (e.g. bitcoin, ethereum, solana). Required for price, coin, history.
coinIdsoptional
string
Comma-separated coin IDs for price (e.g. bitcoin,ethereum).
Discovery hint: Install with ppm install mcp-coingecko or invoke remotely via POST /v1/invoke/mcp-coingecko on the MCP Service.
PascalAI Usage
uses toolslib;
var Tool := LoadTool('mcp-coingecko');
var R := Tool.Call(JsonObj(['operation','price','coinIds','bitcoin,ethereum','currency','usd']));
Writeln(R.ToJSON);