products
Pack: coinbase-exchange · Endpoint: https://gateway.pipeworx.io/coinbase-exchange/mcp
Coinbase Exchange — list all available trading pairs (products) with base/quote currency, min order size, status, and trading rules.
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":"products","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('products', {});
Response shape
Always returns: items, count
| Field | Type | Description |
|---|---|---|
items | array | List of trading pairs |
count | integer | Number of items returned. |
Full JSON Schema
{
"type": "object",
"properties": {
"items": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Product ID"
},
"base_currency": {
"type": "string",
"description": "Base currency"
},
"quote_currency": {
"type": "string",
"description": "Quote currency"
},
"base_min_size": {
"type": "string",
"description": "Minimum order size"
},
"base_max_size": {
"type": "string",
"description": "Maximum order size"
},
"quote_increment": {
"type": "string",
"description": "Quote increment"
},
"display_name": {
"type": "string",
"description": "Display name"
},
"status": {
"type": "string",
"description": "Product status"
},
"margin_enabled": {
"type": "boolean",
"description": "Margin trading enabled"
},
"post_only": {
"type": "boolean",
"description": "Post-only orders"
},
"limit_only": {
"type": "boolean",
"description": "Limit orders only"
},
"cancel_only": {
"type": "boolean",
"description": "Cancel only"
}
}
},
"description": "List of trading pairs"
},
"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.