global_market
Pack: coinpaprika · Endpoint: https://gateway.pipeworx.io/coinpaprika/mcp
Total market cap, 24h volume, BTC dominance, active currencies.
Example call
curl -X POST https://gateway.pipeworx.io/coinpaprika/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"global_market","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
market_cap_usd | number | Total crypto market cap in USD |
volume_24h_usd | number | Total 24h volume in USD |
bitcoin_dominance_percentage | number | BTC market share % |
cryptocurrencies_number | number | Total active cryptocurrencies |
last_updated | number | Last update unix timestamp |
Full JSON Schema
{
"type": "object",
"properties": {
"market_cap_usd": {
"type": "number",
"description": "Total crypto market cap in USD"
},
"volume_24h_usd": {
"type": "number",
"description": "Total 24h volume in USD"
},
"bitcoin_dominance_percentage": {
"type": "number",
"description": "BTC market share %"
},
"cryptocurrencies_number": {
"type": "number",
"description": "Total active cryptocurrencies"
},
"last_updated": {
"type": "number",
"description": "Last update unix timestamp"
}
},
"description": "Global cryptocurrency market metrics"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"coinpaprika": {
"url": "https://gateway.pipeworx.io/coinpaprika/mcp"
}
}
}
See Getting Started for client-specific install steps.