loading…
Search for a command to run...
loading…
Provides comprehensive market data, fundamental analysis, and technical indicators through the AlphaVantage API. It enables users to fetch financial statements,
Provides comprehensive market data, fundamental analysis, and technical indicators through the AlphaVantage API. It enables users to fetch financial statements, stock prices, and market news with sentiment analysis for detailed financial research.
A Model Context Protocol (MCP) server that provides comprehensive market data and fundamental analysis through the AlphaVantage API. Designed for integration with Claude Desktop and other MCP-compatible clients.
# Clone the repository
git clone <repo-url>
cd alphavantage_mcp
# Install dependencies
uv sync
Set your AlphaVantage API key as an environment variable:
# macOS/Linux
export ALPHA_VANTAGE_API_KEY=your_key_here
# Windows (Command Prompt)
set ALPHA_VANTAGE_API_KEY=your_key_here
# Windows (PowerShell)
$env:ALPHA_VANTAGE_API_KEY="your_key_here"
Or create a .env file in the project directory:
ALPHA_VANTAGE_API_KEY=your_alphavantage_api_key
| Variable | Description | Default |
|---|---|---|
ALPHAVANTAGE_DEBUG |
Enable debug mode | false |
ALPHAVANTAGE_PORT |
Server port | 8002 |
ALPHAVANTAGE_LOG_LEVEL |
Log level (DEBUG, INFO, WARNING, ERROR) | INFO |
# Direct execution
uv run alphavantage-mcp-server
# Using launch script (macOS/Linux)
./launch-alphavantage.sh
# Using launch script (Windows)
launch-alphavantage.bat
Add to your Claude Desktop configuration file:
| Platform | Config Location |
|---|---|
| macOS | ~/Library/Application Support/Claude/claude_desktop_config.json |
| Windows | %APPDATA%\Claude\claude_desktop_config.json |
| Linux | ~/.config/Claude/claude_desktop_config.json |
Option 1: Using launch script (recommended)
{
"mcpServers": {
"alphavantage-data": {
"command": "/path/to/alphavantage_mcp/launch-alphavantage.sh",
"env": {
"ALPHA_VANTAGE_API_KEY": "your_key"
}
}
}
}
Option 2: Using absolute path to uv
First, find your uv path: which uv
{
"mcpServers": {
"alphavantage-data": {
"command": "/Users/yourname/.local/bin/uv",
"args": ["run", "alphavantage-mcp-server"],
"cwd": "/path/to/alphavantage_mcp",
"env": {
"ALPHA_VANTAGE_API_KEY": "your_key"
}
}
}
}
Note: GUI applications like Claude Desktop don't inherit your shell's PATH, so using absolute paths is more reliable than relying on uv being in PATH.
On Windows, use backslashes: "cwd": "C:\\path\\to\\alphavantage_mcp"
| Tool | Description | Parameters |
|---|---|---|
get_company_overview |
Company fundamentals including PE ratio, market cap, EPS, margins, and more | symbol |
get_income_statement |
Annual income statement data (last 20 periods) | symbol |
get_balance_sheet |
Annual balance sheet data (last 20 periods) | symbol |
get_cash_flow |
Annual cash flow statements (last 20 periods) | symbol |
get_earnings |
Quarterly or annual earnings data | symbol, period (quarterly/annual) |
| Tool | Description | Parameters |
|---|---|---|
get_daily_prices |
Daily OHLCV data | symbol, outputsize (compact=100 days, full=20+ years) |
get_intraday_prices |
Intraday price data | symbol, timeframe (TimeFrame enum), outputsize |
| Tool | Description | Parameters |
|---|---|---|
get_market_news |
Market news with sentiment analysis | tickers (list), topics (list), time_from, time_to, limit |
| Tool | Description | Parameters |
|---|---|---|
get_technical_indicators |
Calculate technical indicators | symbol, indicator (TechnicalIndicator enum), timeframe (TimeFrame enum), time_period |
Supported indicators (TechnicalIndicator enum):
RSI - Relative Strength IndexMACD - Moving Average Convergence DivergenceBOLLINGER_BANDS - Bollinger BandsSMA - Simple Moving AverageEMA - Exponential Moving AverageSTOCHASTIC - Stochastic OscillatorADX - Average Directional IndexWILLIAMS_R - Williams %RSupported timeframes (TimeFrame enum):
MINUTE - 1 minuteFIVE_MINUTES - 5 minutesFIFTEEN_MINUTES - 15 minutesTHIRTY_MINUTES - 30 minutesHOUR - 1 hourDAILY - DailyWEEKLY - WeeklyMONTHLY - MonthlyGet company fundamentals:
"Get the company overview for AAPL"
Analyze price trends:
"Show me the daily prices for TSLA over the last 100 days"
Technical analysis:
"Calculate the RSI for MSFT with a 14-day period"
Market news:
"Get recent news about NVDA with sentiment analysis"
# Install with dev dependencies
uv sync --extra dev
# Run the server directly
uv run alphavantage-mcp-server
# Run tests
uv run pytest
# Type checking
uv run mypy .
# Format code
uv run black .
The free AlphaVantage API tier allows 25 requests per day. Consider upgrading to a premium plan for higher limits.
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"alphavantage-mcp-server": {
"command": "npx",
"args": []
}
}
}