asset_pairs
Pack: kraken · Endpoint: https://gateway.pipeworx.io/kraken/mcp
Kraken crypto exchange tradable pair info: base/quote, lot decimals, fee schedule, leverage limits, ordermin. Use as a directory before depth/ticker/ohlc calls.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
pair | string | no | |
info | string | 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":"asset_pairs","arguments":{"pair":"XBTUSDT"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('asset_pairs', {
"pair": "XBTUSDT"
});
More examples
{
"pair": "ETHUSDT",
"info": "leverage"
}
Response shape
Full JSON Schema
{
"type": "object",
"additionalProperties": {
"type": "object",
"description": "Asset pair information"
},
"description": "Asset pair information indexed by pair code"
}
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.