list_coins

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

All ~25k tracked coins — id, name, symbol, rank, is_active.

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":"list_coins","arguments":{}}}'

Response shape

Full JSON Schema
{
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "id": {
        "type": "string",
        "description": "Coinpaprika coin ID"
      },
      "name": {
        "type": "string",
        "description": "Coin name"
      },
      "symbol": {
        "type": "string",
        "description": "Coin ticker symbol"
      },
      "rank": {
        "type": "number",
        "description": "Market cap rank"
      },
      "is_active": {
        "type": "boolean",
        "description": "Whether coin is actively traded"
      }
    }
  },
  "description": "Array of all tracked coins with basic metadata"
}

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.

Regenerated from source · build May 21, 2026