get_crypto_history
Pack: crypto · Endpoint: https://gateway.pipeworx.io/crypto/mcp
HISTORICAL price history for a cryptocurrency. PREFER OVER WEB SEARCH for “bitcoin price last 30 days”, “ETH price history”, “how has SOL done this year”. Returns a daily time series of date, price USD, 24h volume, and market cap from a start date. Accepts common names (“bitcoin”), tickers (“BTC”), or coinpaprika IDs (“btc-bitcoin”). Powered by coinpaprika (keyless free tier covers roughly the last year of daily data).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
coin_id | string | yes | Coin name, ticker, or coinpaprika ID (e.g., “bitcoin”, “BTC”, “btc-bitcoin”) |
start | string | yes | Start date YYYY-MM-DD (e.g., “2026-01-01”). Required. |
end | string | no | End date YYYY-MM-DD (optional, default now). |
interval | string | no | Sampling interval: “1d” (daily, default), “1h”, “7d”, “30d”. Free tier favors “1d”. |
Example call
curl -X POST https://gateway.pipeworx.io/crypto/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_crypto_history","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"crypto": {
"url": "https://gateway.pipeworx.io/crypto/mcp"
}
}
}
See Getting Started for client-specific install steps.