Gemini Crypto

live Utility

Gemini Exchange MCP (public endpoints).

10 tools
0ms auth
free tier 50 calls/day

Tools

symbols

List trading pairs.

No parameters required.

Try it
symbol_details

Pair metadata.

No parameters required.

Try it
ticker

v1 ticker.

No parameters required.

Try it
ticker_v2

v2 ticker (24h stats).

No parameters required.

Try it
candles

Candles.

No parameters required.

Try it
book

Orderbook.

No parameters required.

Try it
trades

Trade history.

No parameters required.

Try it
price_feed

Price feed.

No parameters required.

Try it
network

Network for a token.

No parameters required.

Try it
gas_fees

Gas fee estimate.

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/gemini-crypto/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/gemini-crypto/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"symbols","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("symbols", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("gemini exchange mcp (public endpoints)");