list_coins

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

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

Example call

Arguments

{}

curl

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

TypeScript (@pipeworx/sdk)

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

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

Response shape

Always returns: items, count

FieldTypeDescription
itemsarrayArray of all tracked coins with basic metadata
countintegerNumber of items returned.
Full JSON Schema
{
  "type": "object",
  "properties": {
    "items": {
      "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"
    },
    "count": {
      "type": "integer",
      "description": "Number of items returned."
    }
  },
  "required": [
    "items",
    "count"
  ]
}

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 July 6, 2026