ticker

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

Kraken crypto exchange live ticker for a pair (e.g. “XBTUSD”). Returns bid/ask, last trade, 24h volume + VWAP, open price.

Parameters

NameTypeRequiredDescription
pairstringyes

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":"ticker","arguments":{"pair":"XBTUSDT"}}}'

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "pair": "ETHUSDT"
}

Response shape

Full JSON Schema
{
  "type": "object",
  "additionalProperties": {
    "type": "object",
    "properties": {
      "a": {
        "type": "array",
        "description": "Ask price, whole lot volume, lot volume",
        "items": {
          "type": [
            "string",
            "number"
          ]
        }
      },
      "b": {
        "type": "array",
        "description": "Bid price, whole lot volume, lot volume",
        "items": {
          "type": [
            "string",
            "number"
          ]
        }
      },
      "c": {
        "type": "array",
        "description": "Last trade price, lot volume",
        "items": {
          "type": [
            "string",
            "number"
          ]
        }
      },
      "v": {
        "type": "array",
        "description": "Volume, volume weighted average price",
        "items": {
          "type": [
            "string",
            "number"
          ]
        }
      },
      "p": {
        "type": "array",
        "description": "Volume weighted average price, volume weighted average price",
        "items": {
          "type": [
            "string",
            "number"
          ]
        }
      },
      "t": {
        "type": "array",
        "description": "Number of trades, total volume",
        "items": {
          "type": "integer"
        }
      },
      "l": {
        "type": "array",
        "description": "Low, low",
        "items": {
          "type": [
            "string",
            "number"
          ]
        }
      },
      "h": {
        "type": "array",
        "description": "High, high",
        "items": {
          "type": [
            "string",
            "number"
          ]
        }
      },
      "o": {
        "type": [
          "string",
          "number"
        ],
        "description": "Opening price"
      }
    }
  },
  "description": "Ticker data 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