search
Pack: coinpaprika · Endpoint: https://gateway.pipeworx.io/coinpaprika/mcp
Fuzzy search across coins, exchanges, ICOs, people, tags.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | |
modifier | string | no | symbol_search to search by ticker |
limit | number | no | 1-250 (default 6) |
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":"search","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
currencies | array | Matching coins |
exchanges | array | Matching exchanges |
icos | array | Matching ICOs |
people | array | Matching people |
tags | array | Matching tags |
Full JSON Schema
{
"type": "object",
"properties": {
"currencies": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Coinpaprika ID"
},
"name": {
"type": "string",
"description": "Currency name"
},
"symbol": {
"type": "string",
"description": "Currency symbol"
},
"rank": {
"type": "number",
"description": "Market cap rank"
}
}
},
"description": "Matching coins"
},
"exchanges": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
}
}
},
"description": "Matching exchanges"
},
"icos": {
"type": "array",
"items": {
"type": "object"
},
"description": "Matching ICOs"
},
"people": {
"type": "array",
"items": {
"type": "object"
},
"description": "Matching people"
},
"tags": {
"type": "array",
"items": {
"type": "object"
},
"description": "Matching tags"
}
},
"description": "Search results across coins, exchanges, ICOs, people, 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.