depth

Pack: kraken · Endpoint: https://gateway.pipeworx.io/kraken/mcp

Kraken crypto exchange order book — bids + asks for a crypto pair. Returns price/volume/timestamp per level. Use for live depth-of-book on Kraken-listed pairs.

Parameters

NameTypeRequiredDescription
pairstringyes
countnumberno

Example call

Arguments

{
  "pair": "XBTUSDT"
}

curl

curl -X POST https://gateway.pipeworx.io/kraken/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"depth","arguments":{"pair":"XBTUSDT"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('depth', {
  "pair": "XBTUSDT"
});

More examples

{
  "pair": "ETHUSDT",
  "count": 20
}

Response shape

Full JSON Schema
{
  "type": "object",
  "additionalProperties": {
    "type": "object",
    "properties": {
      "asks": {
        "type": "array",
        "description": "Ask orders",
        "items": {
          "type": "array",
          "items": {
            "type": [
              "string",
              "number"
            ]
          },
          "description": "Price, volume, timestamp"
        }
      },
      "bids": {
        "type": "array",
        "description": "Bid orders",
        "items": {
          "type": "array",
          "items": {
            "type": [
              "string",
              "number"
            ]
          },
          "description": "Price, volume, timestamp"
        }
      }
    }
  },
  "description": "Order book depth indexed by pair"
}

Connect

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

{
  "mcpServers": {
    "kraken": {
      "url": "https://gateway.pipeworx.io/kraken/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026