mcp-finnhub
MCP server providing comprehensive access to Finnhub financial market data API for AI assistants like Claude Desktop.
README
mcp-finnhub
Model Context Protocol (MCP) server providing comprehensive access to Finnhub financial market data API. Built for AI assistants like Claude Desktop to seamlessly access real-time market data, technical indicators, fundamentals, and alternative data.
Features
- 15 MCP Tools covering 100+ Finnhub API endpoints
- Real-time market data: Quotes, candles, tick data, BBO
- Technical analysis: 50+ indicators, patterns, support/resistance
- Fundamentals: Financials, earnings, dividends, metrics
- Alternative data: ESG scores, social sentiment, supply chain
- Multi-asset support: Stocks, crypto, forex, ETFs, bonds
- Project-based storage with automatic CSV/JSON exports
- Background job processing for large datasets
- Smart output handling with token estimation
- Configurable tools - enable only what you need
- AI-friendly errors - Structured error responses with guidance
- Built-in help - Every tool supports
operation="help"for discovery
Quick Start
Prerequisites
- Python 3.11 or higher
- Finnhub API key (free tier available)
- Claude Desktop or compatible MCP client
Installation
Option 1: Install from PyPI (coming soon)
pip install mcp-finnhub
Option 2: Install from source
git clone https://github.com/cfdude/mcp-finnhub.git
cd mcp-finnhub
pip install -e .
Configuration
- Create a
.envfile in your project root:
# Required
FINNHUB_API_KEY=your_api_key_here
FINNHUB_STORAGE_DIR=/path/to/storage
# Optional - Tool configuration
FINNHUB_ENABLE_TECHNICAL_ANALYSIS=true
FINNHUB_ENABLE_STOCK_MARKET_DATA=true
FINNHUB_ENABLE_NEWS_SENTIMENT=true
# ... enable/disable other tools as needed
# Optional - Performance tuning
FINNHUB_RATE_LIMIT_RPM=300 # Requests per minute (30 free, 300 premium)
FINNHUB_REQUEST_TIMEOUT=30 # Request timeout in seconds
FINNHUB_SAFE_TOKEN_LIMIT=75000 # Conservative token limit
- Configure Claude Desktop to use mcp-finnhub by adding to
claude_desktop_config.json:
{
"mcpServers": {
"finnhub": {
"command": "mcp-finnhub",
"env": {
"FINNHUB_API_KEY": "your_api_key_here",
"FINNHUB_STORAGE_DIR": "/Users/yourname/finnhub-data"
}
}
}
}
- Restart Claude Desktop
First Query
Ask Claude:
"Get me the latest quote for AAPL"
Claude will use the finnhub_stock_market_data tool with the get_quote operation to fetch Apple's real-time stock quote.
Available Tools
Core Trading & Analysis (3 tools)
finnhub_stock_market_data- Quotes, candles, tick data, BBO, market statusfinnhub_technical_analysis- 50+ indicators (RSI, MACD, SMA), patterns, signalsfinnhub_news_sentiment- Company news, market news, sentiment scores
Fundamentals & Analysis (5 tools)
finnhub_stock_fundamentals- Financials, earnings, dividends, metricsfinnhub_stock_estimates- Revenue/EPS estimates, price targetsfinnhub_stock_ownership- Insider trades, institutional holdingsfinnhub_alternative_data- ESG scores, social sentiment, supply chainfinnhub_sec_filings- SEC filings, earnings transcripts
Multi-Asset Data (4 tools)
finnhub_crypto_data- Crypto exchanges, symbols, profiles, candlesfinnhub_forex_data- Forex rates, candles, exchangesfinnhub_calendar_data- IPO calendar, earnings calendar, economic eventsfinnhub_market_events- Market holidays, analyst upgrades/downgrades
Management Tools (3 tools)
finnhub_project_create- Create project workspacesfinnhub_project_list- List all projects with statisticsfinnhub_job_status- Check background job status
Example Workflows
Technical Analysis Workflow
User: "Analyze TSLA using RSI and MACD indicators"
Claude uses:
1. finnhub_technical_analysis → get_indicator (operation=get_indicator, symbol=TSLA, indicator=rsi)
2. finnhub_technical_analysis → get_indicator (operation=get_indicator, symbol=TSLA, indicator=macd)
3. Analyzes both indicators and provides trading insights
Fundamental Research Workflow
User: "Research MSFT - get financials, earnings, and analyst estimates"
Claude uses:
1. finnhub_stock_fundamentals → get_basic_financials (operation=get_basic_financials, symbol=MSFT)
2. finnhub_stock_fundamentals → get_earnings (operation=get_earnings, symbol=MSFT)
3. finnhub_stock_estimates → get_earnings_estimates (operation=get_earnings_estimates, symbol=MSFT)
4. Summarizes financial health and analyst outlook
Multi-Asset Portfolio Workflow
User: "Create a project called 'my-portfolio', get quotes for AAPL, BTC-USD, and EUR/USD"
Claude uses:
1. finnhub_project_create → create (operation=create, project=my-portfolio)
2. finnhub_stock_market_data → get_quote (operation=get_quote, symbol=AAPL, project=my-portfolio)
3. finnhub_crypto_data → get_crypto_profile (operation=get_crypto_profile, symbol=BINANCE:BTCUSDT)
4. finnhub_forex_data → get_forex_rates (operation=get_forex_rates, base=EUR, project=my-portfolio)
5. All data saved to /storage/my-portfolio/ with CSV exports
Tool Configuration
Control which tools are available to reduce context window usage:
# Disable tools you don't need
FINNHUB_ENABLE_CRYPTO=false
FINNHUB_ENABLE_FOREX=false
FINNHUB_ENABLE_ALTERNATIVE_DATA=false
# Core tools (always recommended)
FINNHUB_ENABLE_STOCK_MARKET_DATA=true
FINNHUB_ENABLE_TECHNICAL_ANALYSIS=true
FINNHUB_ENABLE_NEWS_SENTIMENT=true
Rate Limits
- Free tier: 60 requests/minute
- Basic tier: 150 requests/minute ($49.99/month)
- Premium tier: 300 requests/minute
- Enterprise tier: Custom limits
mcp-finnhub automatically handles rate limiting with exponential backoff and retry logic.
AI Agent Features
Help/Discovery
Every tool supports operation="help" to discover available operations:
finnhub_stock_fundamentals(operation="help")
# Returns all operations with required/optional params and examples
Structured Errors
Errors return actionable JSON instead of stack traces:
{
"error": "invalid_operation",
"message": "Operation 'get_data' not found",
"valid_operations": ["get_basic_financials", "get_dividends", ...],
"tool": "finnhub_stock_fundamentals"
}
Storage Structure
Projects are stored in subdirectories:
FINNHUB_STORAGE_DIR/
├── my-portfolio/
│ ├── .project.json # Project metadata
│ ├── candles/ # Historical price data
│ ├── quotes/ # Real-time quotes
│ ├── news/ # News articles
│ ├── fundamentals/ # Financial data
│ ├── technical/ # Technical indicators
│ └── jobs/ # Background job results
└── research-tech/
└── ...
Development
Setup
# Clone repository
git clone https://github.com/cfdude/mcp-finnhub.git
cd mcp-finnhub
# Install with dev dependencies
pip install -e ".[dev]"
# Run tests
pytest --cov=mcp_finnhub --cov-report=term-missing
# Lint and format
ruff check --fix .
ruff format .
Running Locally
# Set environment variables
export FINNHUB_API_KEY=your_api_key
export FINNHUB_STORAGE_DIR=/tmp/finnhub-data
# Run with STDIO transport (default, for Claude Desktop)
mcp-finnhub
# Run with HTTP streaming (recommended for persistent/remote connections)
mcp-finnhub --transport http --port 8000
# Run with SSE transport (deprecated, use HTTP instead)
mcp-finnhub --transport sse --port 8000
# Custom host binding for network access
mcp-finnhub --transport http --host 0.0.0.0 --port 8125
Transport Options
| Transport | Use Case | Command |
|---|---|---|
stdio |
Claude Desktop, local MCP clients | mcp-finnhub (default) |
http |
Remote connections, persistent server, Claude Code | mcp-finnhub --transport http --port 8000 |
sse |
Legacy SSE clients (deprecated) | mcp-finnhub --transport sse --port 8000 |
Running as a Persistent Service
For HTTP transport, you can run the server as a background service:
# Using nohup (simple)
nohup mcp-finnhub --transport http --port 8000 > finnhub.log 2>&1 &
# Using systemd (Linux)
# See docs/DEPLOYMENT.md for service file examples
Testing with MCP Inspector
# Install MCP inspector
npm install -g @modelcontextprotocol/inspector
# Test the server
mcp-inspector mcp-finnhub
Architecture
- FastMCP Server: Built on MCP SDK's FastMCP for multi-transport support
- ServerContext: Dependency injection container managing client and utilities
- Multi-Transport: STDIO (default), HTTP streaming, and SSE transports
- Async Job Processing: Background workers for large dataset operations
- Type Safety: Pydantic models for all API requests/responses
See ARCHITECTURE.md for detailed design documentation.
API Reference
See API.md for complete tool documentation with examples.
Troubleshooting
"Authentication failed" error
- Verify your
FINNHUB_API_KEYis correct - Check if your API key has expired
- Ensure you haven't exceeded rate limits
"Tool not found" error
- Check that the tool is enabled in your configuration
- Verify tool names match exactly (case-sensitive)
Storage permission errors
- Ensure
FINNHUB_STORAGE_DIRexists and is writable - Check filesystem permissions
Rate limit errors
- Reduce
FINNHUB_RATE_LIMIT_RPMin your configuration - Upgrade to premium tier for higher limits
Contributing
Contributions welcome! Please:
- Fork the repository
- Create a feature branch
- Add tests for new functionality
- Ensure all tests pass
- Submit a pull request
License
MIT License - see LICENSE for details
Acknowledgments
- Built with Model Context Protocol
- Powered by Finnhub API
- Inspired by mcp-fred patterns
Support
- Issues: GitHub Issues
- Documentation: docs/
- Finnhub API Docs: finnhub.io/docs/api
Made with ❤️ for the AI assistant ecosystem
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。
mcp-server-qdrant
这个仓库展示了如何为向量搜索引擎 Qdrant 创建一个 MCP (Managed Control Plane) 服务器的示例。