currencies

Pack: coinbase-exchange · Endpoint: https://gateway.pipeworx.io/coinbase-exchange/mcp

List currencies.

Example call

Arguments

{}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('currencies', {});

Response shape

Always returns: items, count

FieldTypeDescription
itemsarrayList of supported currencies
countintegerNumber of items returned.
Full JSON Schema
{
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Currency ID"
          },
          "name": {
            "type": "string",
            "description": "Currency name"
          },
          "min_size": {
            "type": "string",
            "description": "Minimum withdrawal size"
          },
          "status": {
            "type": "string",
            "description": "Currency status"
          },
          "max_precision": {
            "type": "string",
            "description": "Max decimal precision"
          },
          "convertible_to": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Convertible currencies"
          },
          "details": {
            "type": "object",
            "description": "Additional currency details"
          }
        }
      },
      "description": "List of supported currencies"
    },
    "count": {
      "type": "integer",
      "description": "Number of items returned."
    }
  },
  "required": [
    "items",
    "count"
  ]
}

Connect

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

{
  "mcpServers": {
    "coinbase-exchange": {
      "url": "https://gateway.pipeworx.io/coinbase-exchange/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build June 12, 2026