ticker
Pack: gemini-crypto · Endpoint: https://gateway.pipeworx.io/gemini-crypto/mcp
Gemini crypto exchange (US-regulated) v1 ticker for a crypto pair like “btcusd”: bid, ask, last, 24h volume. Use for current Gemini pricing.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
symbol | string | yes |
Example call
Arguments
{
"symbol": "btcusd"
}
curl
curl -X POST https://gateway.pipeworx.io/gemini-crypto/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ticker","arguments":{"symbol":"btcusd"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ticker', {
"symbol": "btcusd"
});
Response shape
| Field | Type | Description |
|---|---|---|
symbol | string | Trading pair symbol |
last | string | Last trade price |
bid | string | Current bid price |
ask | string | Current ask price |
volume | object |
Full JSON Schema
{
"type": "object",
"properties": {
"symbol": {
"type": "string",
"description": "Trading pair symbol"
},
"last": {
"type": "string",
"description": "Last trade price"
},
"bid": {
"type": "string",
"description": "Current bid price"
},
"ask": {
"type": "string",
"description": "Current ask price"
},
"volume": {
"type": "object",
"properties": {
"BTC": {
"type": "string",
"description": "Volume in base currency"
},
"USD": {
"type": "string",
"description": "Volume in quote currency"
}
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"gemini-crypto": {
"url": "https://gateway.pipeworx.io/gemini-crypto/mcp"
}
}
}
See Getting Started for client-specific install steps.