get_coin

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

Full coin profile — description, team, links, tags.

Parameters

NameTypeRequiredDescription
coin_idstringyesCoinpaprika id (e.g. “btc-bitcoin”)

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

Response shape

FieldTypeDescription
idstringCoinpaprika coin ID
namestringCoin name
symbolstringCoin ticker symbol
ranknumberMarket cap rank
is_activebooleanWhether coin is actively traded
descriptionstringFull coin description
teamarrayTeam members
linksobjectOfficial links (website, github, twitter, etc)
tagsarrayCategory tags
Full JSON Schema
{
  "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": {
      "type": "string",
      "description": "Full coin description"
    },
    "team": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "position": {
            "type": "string"
          }
        }
      },
      "description": "Team members"
    },
    "links": {
      "type": "object",
      "description": "Official links (website, github, twitter, etc)"
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "object"
      },
      "description": "Category tags"
    }
  },
  "description": "Full coin profile with description, team, links, and tags"
}

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