global_metrics
Pack: coinmarketcap · Endpoint: https://gateway.pipeworx.io/coinmarketcap/mcp
Total market cap, 24h volume, BTC/ETH dominance, active cryptos.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
convert | string | no | Default USD |
Example call
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":"global_metrics","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
data | object | |
status | object |
Full JSON Schema
{
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"btc_dominance": {
"type": "number",
"description": "Bitcoin market cap dominance percentage"
},
"eth_dominance": {
"type": "number",
"description": "Ethereum market cap dominance percentage"
},
"active_cryptocurrencies": {
"type": "integer",
"description": "Total active cryptocurrencies"
},
"total_cryptocurrencies": {
"type": "integer",
"description": "Total cryptocurrencies tracked"
},
"active_market_pairs": {
"type": "integer",
"description": "Total active market pairs"
},
"last_updated": {
"type": "string",
"description": "Last update ISO timestamp"
},
"quote": {
"type": "object",
"description": "Global metrics in requested currency"
}
}
},
"status": {
"type": "object",
"properties": {
"timestamp": {
"type": "string",
"description": "ISO timestamp"
},
"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.