ohlc

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

OHLC candles.

Parameters

NameTypeRequiredDescription
currency_pairstringyes
stepnumberyes
limitnumberyes
startnumberno
endnumberno
exclude_current_candlebooleanno

Example call

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

Response shape

FieldTypeDescription
pairstringCurrency pair
ohlcarrayOHLC candles
timestampstringUnix timestamp
Full JSON Schema
{
  "type": "object",
  "properties": {
    "pair": {
      "type": "string",
      "description": "Currency pair"
    },
    "ohlc": {
      "type": "array",
      "description": "OHLC candles",
      "items": {
        "type": "array",
        "items": {
          "type": "string"
        },
        "description": "Candle [timestamp, open, high, low, close, volume]"
      }
    },
    "timestamp": {
      "type": "string",
      "description": "Unix timestamp"
    }
  }
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build May 21, 2026