← Back to MCP list
📈

EODHD Financial Data MCP

v1.0.0
Data AcquisitionRemote

Official EODHD MCP server exposing stocks, ETFs, forex, crypto, and macro datasets to AI clients. Free tier offers ~20 API calls/day; MCP is free and quotas follow your EODHD plan. Supports API key (v1) or OAuth 2.1 (v2).

§ Connection Config

Transport Type: remote
https://mcp.eodhd.com/v1/mcp
Authorization: Bearer {env:EODHD_API_KEY}
EODHD API KeyRequired

Obtain after registering at eodhd.com. Free account is enough to start.

Type: headerApply →

§ Quickstart

Add the following to your MCP client configuration (Cursor, Claude Desktop, etc.):

Settings → Tools & MCP → New MCP Server. Replace YOUR_API_KEY with your EODHD key. You may also pass apikey as a URL query param.

MCP Client Configuration

{
  "mcpServers": {
    "eodhd-mcp": {
      "type": "streamableHttp",
      "url": "https://mcp.eodhd.com/v1/mcp?apikey=YOUR_API_KEY"
    }
  }
}
View full setup guide →

§ Tools Reference

6 tools

get_realtime_price

Get real-time or latest price for a ticker

ParameterTypeRequiredDescription
symbolstringe.g. AAPL.US

get_fundamentals

Get company fundamentals and valuation metrics

ParameterTypeRequiredDescription
symbolstringExchange-suffixed symbol

get_historical_prices

Get historical OHLCV data

ParameterTypeRequiredDescription
symbolstringTicker symbol
fromstringStart date
tostringEnd date

get_technical_indicators

Compute technical indicators (RSI, MACD, etc.)

ParameterTypeRequiredDescription
symbolstringTicker symbol

get_news

Get financial news for a symbol

ParameterTypeRequiredDescription
symbolstringTicker symbol

compare_stocks

Built-in prompt: side-by-side stock comparison

ParameterTypeRequiredDescription
ticker1stringFirst ticker
ticker2stringSecond ticker

§ Examples

Once configured, you can ask the AI directly:

Compare stocks

Use compare_stocks to compare AAPL.US vs MSFT.US on valuation and growth

Uses EODHD built-in compare_stocks prompt template

Fundamentals snapshot

Get NVDA.US P/E, market cap, and revenue growth

Combines fundamentals and price tools