top_volume_full
Pack: cryptocompare · Endpoint: https://gateway.pipeworx.io/cryptocompare/mcp
Return the top cryptocurrencies ranked by 24h total volume denominated in a quote symbol (tsym); paginates with page parameter.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
tsym | string | yes | |
limit | number | no | |
page | number | no |
Example call
Arguments
{
"tsym": "USD",
"limit": 20
}
curl
curl -X POST https://gateway.pipeworx.io/cryptocompare/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"top_volume_full","arguments":{"tsym":"USD","limit":20}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('top_volume_full', {
"tsym": "USD",
"limit": 20
});
More examples
{
"tsym": "EUR",
"limit": 50,
"page": 1
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "Top coins by trading volume"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"cryptocompare": {
"url": "https://gateway.pipeworx.io/cryptocompare/mcp"
}
}
}
See Getting Started for client-specific install steps.