ticker
Pack: bitstamp · Endpoint: https://gateway.pipeworx.io/bitstamp/mcp
Current ticker.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
currency_pair | string | yes |
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":"ticker","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
last | string | Last traded price |
high | string | Highest price in 24h |
low | string | Lowest price in 24h |
vwap | string | Volume weighted average price |
volume | string | Trading volume in 24h |
bid | string | Current bid price |
ask | string | Current ask price |
timestamp | string | Unix timestamp |
open | string | Opening price |
Full JSON Schema
{
"type": "object",
"properties": {
"last": {
"type": "string",
"description": "Last traded price"
},
"high": {
"type": "string",
"description": "Highest price in 24h"
},
"low": {
"type": "string",
"description": "Lowest price in 24h"
},
"vwap": {
"type": "string",
"description": "Volume weighted average price"
},
"volume": {
"type": "string",
"description": "Trading volume in 24h"
},
"bid": {
"type": "string",
"description": "Current bid price"
},
"ask": {
"type": "string",
"description": "Current ask price"
},
"timestamp": {
"type": "string",
"description": "Unix timestamp"
},
"open": {
"type": "string",
"description": "Opening price"
}
}
}
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.