assets

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

Kraken crypto exchange asset info: precision, status, alt-name, conversion factor for crypto assets (BTC, ETH, USDT, etc.) and fiat.

Parameters

NameTypeRequiredDescription
assetstringno
aclassstringno

Example call

Arguments

{
  "asset": "XBT"
}

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":"assets","arguments":{"asset":"XBT"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('assets', {
  "asset": "XBT"
});

More examples

{
  "asset": "ETH",
  "aclass": "currency"
}

Response shape

Full JSON Schema
{
  "type": "object",
  "additionalProperties": {
    "type": "object",
    "properties": {
      "altname": {
        "type": "string",
        "description": "Alternative asset name"
      },
      "decimals": {
        "type": "integer",
        "description": "Number of decimal places"
      },
      "display_decimals": {
        "type": "integer",
        "description": "Display decimal places"
      }
    }
  },
  "description": "Asset information indexed by asset 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.

Regenerated from source · build July 6, 2026