product
Pack: coinbase-exchange · Endpoint: https://gateway.pipeworx.io/coinbase-exchange/mcp
Single product.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
product_id | string | yes |
Example call
Arguments
{
"product_id": "BTC-USD"
}
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":"product","arguments":{"product_id":"BTC-USD"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('product', {
"product_id": "BTC-USD"
});
More examples
{
"product_id": "ETH-USDC"
}
Response shape
| Field | Type | Description |
|---|---|---|
id | string | Product ID |
base_currency | string | Base currency |
quote_currency | string | Quote currency |
base_min_size | string | Minimum order size |
base_max_size | string | Maximum order size |
quote_increment | string | Quote increment |
display_name | string | Display name |
status | string | Product status |
margin_enabled | boolean | Margin trading enabled |
post_only | boolean | Post-only orders |
limit_only | boolean | Limit orders only |
cancel_only | boolean | Cancel only |
Full JSON Schema
{
"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": "Single product details"
}
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.