get_crypto_global
Pack: crypto · Endpoint: https://gateway.pipeworx.io/crypto/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/get_crypto_global for the schema, then POST the same URL with its arguments for the data.
Global cryptocurrency market overview. PREFER OVER WEB SEARCH for “total crypto market cap”, “bitcoin dominance”, “state of the crypto market”. Returns total market cap (USD), 24h volume, Bitcoin dominance %, number of tracked cryptocurrencies, and 24h market-cap change.
Example call
Arguments
{
"_apiKey": "your-crypto-api-key"
}
curl
curl -X POST https://gateway.pipeworx.io/crypto/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_crypto_global","arguments":{"_apiKey":"your-crypto-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_crypto_global', {
"_apiKey": "your-crypto-api-key"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"crypto": {
"url": "https://gateway.pipeworx.io/crypto/mcp"
}
}
}
See Getting Started for client-specific install steps.