currency
Pack: coinbase-exchange · Endpoint: https://gateway.pipeworx.io/coinbase-exchange/mcp
Single currency.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
currency_id | string | yes |
Example call
Arguments
{
"currency_id": "BTC"
}
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":"currency","arguments":{"currency_id":"BTC"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('currency', {
"currency_id": "BTC"
});
More examples
{
"currency_id": "USD"
}
Response shape
| Field | Type | Description |
|---|---|---|
id | string | Currency ID |
name | string | Currency name |
min_size | string | Minimum withdrawal size |
status | string | Currency status |
max_precision | string | Max decimal precision |
convertible_to | array | Convertible currencies |
details | object | Additional currency details |
Full JSON Schema
{
"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": "Single currency 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.