Integrate EODHD financial APIs into Claude workflows to fetch real-time/historical data for 150k+ tickers across 70+ exchanges: prices, fundamentals, options, technicals, news, sentiment, macro indicators, ESG. Build stock screeners, portfolio risk analyzers, earnings calendars, macro dashboards using dedicated skills and a financial analyst agent.
npx claudepluginhub eodhistoricaldata/eodhd-claude-skills --plugin eodhd-apiGenerate a comprehensive company snapshot using EODHD data — profile, fundamentals, recent news, sentiment, insider transactions, and key metrics. Use when the user asks about a specific company, wants a stock overview, or needs a quick investment brief.
Monitor upcoming and recent earnings — calendar, trends, news context, and options activity around earnings dates. Use when the user asks about earnings season, upcoming reports, earnings surprises, or pre/post-earnings analysis.
Fetch financial data from EODHD API — historical prices, fundamentals, options, technical indicators, news, sentiment, macro indicators, corporate events, ESG scores, risk analytics, bank data, US Treasury rates, and trading hours. Use when the user asks for stock prices, company fundamentals, financial analysis, market data, earnings, dividends, splits, IPOs, insider transactions, screener, or building financial tools with EODHD data.
Macro-economic dashboard — GDP, CPI, unemployment, interest rates, Treasury yields, trade balance, and economic events calendar. Use when the user asks about the economy, macro trends, interest rates, or economic indicators.
Generate a broad market overview — major indices, sector performance, top movers, macro indicators, Treasury rates, and commodities. Use when the user asks "how's the market?", wants a daily market summary, or needs a macro context for investment decisions.
Analyze options chains, implied volatility, Greeks, and strategy payoffs using EODHD Marketplace options data. Use when the user asks about options, implied volatility, Greeks, or options strategies.
Analyze portfolio risk — technical indicators, sentiment shifts, insider alerts, ESG scores, and volatility metrics. Use when the user asks about portfolio risk, wants to assess holdings, or needs risk/reward analysis.
Screen stocks by fundamental and technical criteria using EODHD screener — filter by market cap, P/E, dividend yield, sector, signals, and more. Use when the user wants to find stocks matching specific criteria.
External network access
Connects to servers outside your machine
Uses power tools
Uses Bash, Write, or Edit tools
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimFinancial research MCP server — Yahoo Finance quotes, historical prices, options, market movers, earnings, fear & greed, and technical indicators
Stock market data, company information, and financial indicators via AlphaVantage
Comprehensive US stock evaluation with fundamental, technical, economic, valuation, and financial report analysis
Open-source investment research terminal integration - equity analysis, crypto tracking, macro indicators, portfolio optimization, and AI-powered financial insights using OpenBB Platform
Institutional-grade equity research tool generating professional buy/sell recommendations with fundamental analysis, technical indicators, and risk assessment for investment decisions.
A-share market data query skills for tushare-cli: stock, index, concepts, sector rotation, financials, futures, forex
Developer-first financial data for Claude — 150,000+ tickers across 70+ exchanges, powered by EODHD API and an OAuth-secured MCP Server.
Disclaimer: This plugin may differ from actual EODHD API behavior due to documentation discrepancies or API evolution. Claude may interpret information incorrectly. For questions, email supportlevel1@eodhistoricaldata.com
/eodhd-analyze, /eodhd-compare, /eodhd-market, /eodhd-screen, /eodhd-macro# Register the marketplace
/plugin marketplace add EodHistoricalData/eodhd-claude-skills
# Install the plugin
/plugin install eodhd-api@eodhd-claude-skills
The plugin includes .mcp.json for automatic MCP Server connection:
{
"eodhd": {
"type": "http",
"url": "https://mcp.eodhd.dev/v2/mcp"
}
}
git clone https://github.com/EodHistoricalData/eodhd-claude-skills.git
export EODHD_API_TOKEN="your_token_here"
eodhd-claude-skills/
├── .claude-plugin/
│ ├── marketplace.json # Plugin manifest for Claude Code
│ └── plugin.json # Extended plugin metadata
├── .claude/
│ └── commands/ # Slash commands
│ ├── eodhd-analyze.md # /eodhd-analyze <ticker>
│ ├── eodhd-compare.md # /eodhd-compare <ticker1> <ticker2>
│ ├── eodhd-market.md # /eodhd-market
│ ├── eodhd-screen.md # /eodhd-screen <criteria>
│ └── eodhd-macro.md # /eodhd-macro
├── .mcp.json # MCP Server connector (OAuth)
├── agents/
│ └── financial-analyst.md # Financial analyst agent definition
├── skills/
│ ├── eodhd-api/ # Core skill — full API access
│ │ ├── SKILL.md
│ │ ├── references/
│ │ │ ├── general/ # 28 general guides
│ │ │ ├── endpoints/ # 72 endpoint docs
│ │ │ ├── subscriptions/ # 7 subscription plans
│ │ │ └── workflows.md
│ │ ├── scripts/
│ │ │ └── eodhd_client.py # Python API client (stdlib-only)
│ │ └── templates/
│ │ └── analysis_report.md
│ ├── company-brief/ # Company snapshot workflow
│ ├── earnings-monitor/ # Earnings tracking workflow
│ ├── market-overview/ # Market summary workflow
│ ├── portfolio-risk/ # Risk analysis workflow
│ ├── stock-screener/ # Stock screening workflow
│ ├── macro-dashboard/ # Macro-economic dashboard
│ └── options-analyzer/ # Options analysis workflow
├── adapters/
│ ├── claude/eodhd-api.md
│ └── codex/eodhd-api.md
├── CLAUDE.md
├── LICENSE # MIT
└── README.md
export EODHD_API_TOKEN="your_token_here"
/eodhd-analyze AAPL # Full company analysis
/eodhd-compare AAPL MSFT # Side-by-side comparison
/eodhd-market # Market overview
/eodhd-screen high dividend large cap # Stock screening
/eodhd-macro # Macro dashboard
python skills/eodhd-api/scripts/eodhd_client.py --endpoint eod --symbol AAPL.US --from-date 2025-01-01 --to-date 2025-03-31
python skills/eodhd-api/scripts/eodhd_client.py --endpoint fundamentals --symbol MSFT.US
python skills/eodhd-api/scripts/eodhd_client.py --endpoint screener --limit 20
Use the eodhd-api plugin. Pull daily prices for AAPL.US from 2025-01-01 to 2025-03-31
and give me a trend analysis with key support/resistance levels.
eodhd-apiFull access to all 72 EODHD endpoints via Python client and curl. Handles any financial data request.