Coingecko

live Data

CoinGecko MCP — wraps CoinGecko free API (no auth required)

4 tools
0ms auth
free tier 50 calls/day

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

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/coingecko/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
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":{}}}'