trades
Pack: kraken · Endpoint: https://gateway.pipeworx.io/kraken/mcp
Kraken crypto exchange recent trade tape for a pair. Returns price, volume, timestamp, buy/sell, market/limit. Use for tick-level execution analysis.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
pair | string | yes | |
since | number | no | |
count | number | no |
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":"trades","arguments":{"pair":"XBTUSDT"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('trades', {
"pair": "XBTUSDT"
});
More examples
{
"pair": "ETHUSDT",
"since": 1234567890,
"count": 50
}
Response shape
Full JSON Schema
{
"type": "object",
"additionalProperties": {
"oneOf": [
{
"type": "array",
"description": "Trade data",
"items": {
"type": "array",
"items": {
"type": [
"string",
"number"
]
},
"description": "Price, volume, time, side, type, misc"
}
},
{
"type": "number",
"description": "Last trade id"
}
]
},
"description": "Recent trades 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.