top_market_cap

Pack: cryptocompare · Endpoint: https://gateway.pipeworx.io/cryptocompare/mcp

Return the top cryptocurrencies ranked by market capitalization denominated in a quote symbol (tsym); paginates with page parameter.

Parameters

NameTypeRequiredDescription
limitnumberno
tsymstringno
pagenumberno

Example call

Arguments

{
  "limit": 30,
  "tsym": "USD"
}

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_market_cap","arguments":{"limit":30,"tsym":"USD"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('top_market_cap', {
  "limit": 30,
  "tsym": "USD"
});

More examples

{
  "limit": 100
}

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Top coins by market capitalization"
}

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.

Regenerated from source · build July 6, 2026