trading_pairs
Pack: bitstamp · Endpoint: https://gateway.pipeworx.io/bitstamp/mcp
Supported pairs.
Example call
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":{}}}'
Response shape
Full JSON Schema
{
"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"
}
}
}
}
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.