crypto_prices

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

Get crypto prices for a pair (open, high, low, close, volume) at a chosen resample frequency. Example: crypto_prices({ ticker: “btcusd”, resampleFreq: “1day” })

Parameters

NameTypeRequiredDescription
tickerstringyesCrypto pair ticker, e.g. “btcusd”, “ethusd”
resampleFreqstringnoResample frequency, e.g. “1min”, “1hour”, “1day” (default “1day”)
_apiKeystringnoOptional — your own Tiingo API key for higher limits; omit to use the shared Pipeworx key.

Example call

Arguments

{
  "ticker": "btcusd"
}

curl

curl -X POST https://gateway.pipeworx.io/tiingo/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"crypto_prices","arguments":{"ticker":"btcusd"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('crypto_prices', {
  "ticker": "btcusd"
});

More examples

{
  "ticker": "ethusd",
  "resampleFreq": "1hour"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "tiingo": {
      "url": "https://gateway.pipeworx.io/tiingo/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 2, 2026