trading_pairs
Pack: bitstamp · Endpoint: https://gateway.pipeworx.io/bitstamp/mcp
List all Bitstamp trading pairs with metadata: base/counter currency, minimum order, symbol, trading enabled status, and URL symbol.
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/bitstamp/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"trading_pairs","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('trading_pairs', {});
Response shape
Always returns: items, count
| Field | Type | Description |
|---|---|---|
items | array | List of supported trading pairs |
count | integer | Number of items returned. |
Full JSON Schema
{
"type": "object",
"properties": {
"items": {
"type": "array",
"description": "List of supported trading pairs",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Pair name"
},
"url_symbol": {
"type": "string",
"description": "URL symbol for API"
},
"base": {
"type": "string",
"description": "Base currency"
},
"counter": {
"type": "string",
"description": "Counter currency"
},
"description": {
"type": "string",
"description": "Pair description"
},
"instant_and_market_orders": {
"type": "string",
"description": "Support indicator"
},
"statoshi_symbol": {
"type": "string",
"description": "Statoshi symbol"
}
}
}
},
"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": {
"bitstamp": {
"url": "https://gateway.pipeworx.io/bitstamp/mcp"
}
}
}
See Getting Started for client-specific install steps.