product_stats
Pack: coinbase-exchange · Endpoint: https://gateway.pipeworx.io/coinbase-exchange/mcp
Coinbase Exchange 24-hour rolling stats for a crypto pair: open, high, low, last, volume, 30-day volume. Use for daily summary.
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_stats","arguments":{"product_id":"BTC-USD"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('product_stats', {
"product_id": "BTC-USD"
});
Response shape
| Field | Type | Description |
|---|---|---|
open | string | 24h opening price |
high | string | 24h high price |
low | string | 24h low price |
volume | string | 24h volume |
last | string | Last trade price |
volume_30day | string | 30-day volume |
Full JSON Schema
{
"type": "object",
"properties": {
"open": {
"type": "string",
"description": "24h opening price"
},
"high": {
"type": "string",
"description": "24h high price"
},
"low": {
"type": "string",
"description": "24h low price"
},
"volume": {
"type": "string",
"description": "24h volume"
},
"last": {
"type": "string",
"description": "Last trade price"
},
"volume_30day": {
"type": "string",
"description": "30-day volume"
}
},
"description": "24-hour statistics"
}
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.