Coingecko
live DataCoinGecko MCP — wraps CoinGecko free API (no auth required)
Tools
get_coin Get detailed information about a cryptocurrency including price, market cap, volume, and description. Example: get_coin({ id: "bitcoin" }) or get_coin({ id: "ethereum" })
No parameters required.
Try it
search_coins Search for cryptocurrencies by name or symbol. Returns matching coins with their IDs. Example: search_coins({ query: "bitcoin" })
No parameters required.
Try it
get_market_data Get top cryptocurrencies ranked by market cap with current prices, 24h changes, and volume. Example: get_market_data({ vs_currency: "usd", limit: 10 })
No parameters required.
Try it
get_trending Get currently trending cryptocurrencies on CoinGecko based on user search activity. No parameters needed.
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/coingecko/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/coingecko/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"get_coin","arguments":{}}}'