eodhd_eod_prices

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

Get historical daily prices for — end-of-day OHLCV plus adjusted close. Symbol uses EXCHANGE.SUFFIX format, e.g. “AAPL.US”. Optionally bound with from/to (YYYY-MM-DD) and period (d/w/m). Example: eodhd_eod_prices({ symbol: “AAPL.US”, from: “2024-01-01”, to: “2024-06-30”, _apiKey: “your-api_token” })

Parameters

NameTypeRequiredDescription
symbolstringyesTicker with exchange suffix, e.g. “AAPL.US”
fromstringnoStart date in YYYY-MM-DD format (optional)
tostringnoEnd date in YYYY-MM-DD format (optional)
periodstringnoSampling period: “d” daily (default), “w” weekly, “m” monthly
_apiKeystringyesEODHD api_token (get one free at eodhd.com; free tier 20 calls/day)

Example call

Arguments

{
  "symbol": "AAPL.US",
  "_apiKey": "your-eodhd-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/eodhd/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"eodhd_eod_prices","arguments":{"symbol":"AAPL.US","_apiKey":"your-eodhd-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('eodhd_eod_prices', {
  "symbol": "AAPL.US",
  "_apiKey": "your-eodhd-api-key"
});

More examples

{
  "symbol": "TSLA.US",
  "from": "2024-01-01",
  "to": "2024-06-30",
  "period": "d",
  "_apiKey": "your-eodhd-api-key"
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build August 15, 2026