get_coin
Pack: coinpaprika · Endpoint: https://gateway.pipeworx.io/coinpaprika/mcp
Full coin profile — description, team, links, tags.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
coin_id | string | yes | Coinpaprika 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
| Field | Type | Description |
|---|---|---|
id | string | Coinpaprika coin ID |
name | string | Coin name |
symbol | string | Coin ticker symbol |
rank | number | Market cap rank |
is_active | boolean | Whether coin is actively traded |
description | string | Full coin description |
team | array | Team members |
links | object | Official links (website, github, twitter, etc) |
tags | array | Category 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.