get_trending

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

Get currently trending cryptocurrencies on CoinGecko based on user search activity. No parameters needed.

Example call

Arguments

{}

curl

curl -X POST https://gateway.pipeworx.io/coingecko/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_trending","arguments":{}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_trending', {});

Response shape

Always returns: coins

FieldTypeDescription
coinsarrayList of trending cryptocurrencies
Full JSON Schema
{
  "type": "object",
  "properties": {
    "coins": {
      "type": "array",
      "description": "List of trending cryptocurrencies",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "CoinGecko coin ID"
          },
          "name": {
            "type": "string",
            "description": "Coin name"
          },
          "symbol": {
            "type": "string",
            "description": "Coin symbol"
          },
          "market_cap_rank": {
            "type": "number",
            "description": "Market cap rank"
          },
          "score": {
            "type": "number",
            "description": "Trending score"
          }
        },
        "required": [
          "id",
          "name",
          "symbol",
          "market_cap_rank",
          "score"
        ]
      }
    }
  },
  "required": [
    "coins"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "coingecko": {
      "url": "https://gateway.pipeworx.io/coingecko/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026