book

Pack: gemini-crypto · Endpoint: https://gateway.pipeworx.io/gemini-crypto/mcp

Gemini crypto exchange (US-regulated) order book for a crypto pair: bids + asks with price, amount, timestamp. Use for live depth-of-book on Gemini-listed pairs.

Parameters

NameTypeRequiredDescription
symbolstringyes
limit_bidsnumberno
limit_asksnumberno

Example call

Arguments

{
  "symbol": "btcusd"
}

curl

curl -X POST https://gateway.pipeworx.io/gemini-crypto/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"book","arguments":{"symbol":"btcusd"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('book', {
  "symbol": "btcusd"
});

More examples

{
  "symbol": "ethusd",
  "limit_bids": 50,
  "limit_asks": 50
}

Response shape

FieldTypeDescription
bidsarrayArray of bid orders
asksarrayArray of ask orders
Full JSON Schema
{
  "type": "object",
  "properties": {
    "bids": {
      "type": "array",
      "items": {
        "type": "array",
        "items": {
          "type": "string"
        },
        "description": "[price, amount]"
      },
      "description": "Array of bid orders"
    },
    "asks": {
      "type": "array",
      "items": {
        "type": "array",
        "items": {
          "type": "string"
        },
        "description": "[price, amount]"
      },
      "description": "Array of ask orders"
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "gemini-crypto": {
      "url": "https://gateway.pipeworx.io/gemini-crypto/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026