quotes
Pack: coinmarketcap · Endpoint: https://gateway.pipeworx.io/coinmarketcap/mcp
Latest market quotes for one or more cryptocurrencies. Identify by symbol (e.g. “BTC,ETH”) OR by id (CMC numeric IDs).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
symbol | string | no | Comma-separated tickers (e.g. “BTC,ETH,SOL”) |
id | string | no | Comma-separated CMC IDs |
convert | string | no | Target currency (default USD) |
Example call
Arguments
{
"symbol": "BTC,ETH,SOL"
}
curl
curl -X POST https://gateway.pipeworx.io/coinmarketcap/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"quotes","arguments":{"symbol":"BTC,ETH,SOL"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('quotes', {
"symbol": "BTC,ETH,SOL"
});
More examples
{
"id": "1,1027,5426",
"convert": "EUR"
}
Response shape
| Field | Type | Description |
|---|---|---|
data | object | Cryptocurrency quote data keyed by symbol or ID |
status | object |
Full JSON Schema
{
"type": "object",
"properties": {
"data": {
"type": "object",
"description": "Cryptocurrency quote data keyed by symbol or ID"
},
"status": {
"type": "object",
"properties": {
"timestamp": {
"type": "string",
"description": "ISO timestamp of the quote"
},
"error_code": {
"type": "integer",
"description": "Error code (0 for success)"
},
"error_message": {
"type": [
"string",
"null"
],
"description": "Error message if applicable"
},
"elapsed": {
"type": "integer",
"description": "Elapsed milliseconds"
},
"credit_count": {
"type": "integer",
"description": "API credits consumed"
}
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"coinmarketcap": {
"url": "https://gateway.pipeworx.io/coinmarketcap/mcp"
}
}
}
See Getting Started for client-specific install steps.