ohlc

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

Kraken crypto exchange OHLC candles for a pair. Intervals 1, 5, 15, 30, 60, 240, 1440, 10080, 21600 minutes. Use for charting Kraken pairs.

Parameters

NameTypeRequiredDescription
pairstringyes
intervalnumberno
sincenumberno

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

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "pair": "ETHUSDT",
  "interval": 60,
  "since": 1234567890
}

Response shape

Full JSON Schema
{
  "type": "object",
  "additionalProperties": {
    "oneOf": [
      {
        "type": "array",
        "description": "OHLC candles",
        "items": {
          "type": "array",
          "items": {
            "type": [
              "string",
              "number"
            ]
          },
          "description": "Time, open, high, low, close, vwap, volume, count"
        }
      },
      {
        "type": "number",
        "description": "Last trade time"
      }
    ]
  },
  "description": "OHLC 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