← Back to MCP listView full setup guide →
§ 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"
}
}
}§ Tools Reference
6 tools
get_realtime_price
Get real-time or latest price for a ticker
| Parameter | Type | Required | Description |
|---|---|---|---|
| symbol | string | ✓ | e.g. AAPL.US |
get_fundamentals
Get company fundamentals and valuation metrics
| Parameter | Type | Required | Description |
|---|---|---|---|
| symbol | string | ✓ | Exchange-suffixed symbol |
get_historical_prices
Get historical OHLCV data
| Parameter | Type | Required | Description |
|---|---|---|---|
| symbol | string | ✓ | Ticker symbol |
| from | string | — | Start date |
| to | string | — | End date |
get_technical_indicators
Compute technical indicators (RSI, MACD, etc.)
| Parameter | Type | Required | Description |
|---|---|---|---|
| symbol | string | ✓ | Ticker symbol |
get_news
Get financial news for a symbol
| Parameter | Type | Required | Description |
|---|---|---|---|
| symbol | string | ✓ | Ticker symbol |
compare_stocks
Built-in prompt: side-by-side stock comparison
| Parameter | Type | Required | Description |
|---|---|---|---|
| ticker1 | string | ✓ | First ticker |
| ticker2 | string | ✓ | Second 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
LadleAgent