Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@AlphaVantage MCP ServerGet the latest news and sentiment analysis for NVDA"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
AlphaVantage MCP Server
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.
Requirements
Python 3.10 - 3.12
uv package manager
AlphaVantage API key (get one free)
Installation
Configuration
Set your AlphaVantage API key as an environment variable:
Or create a .env file in the project directory:
Server Configuration (Optional)
Variable | Description | Default |
| Enable debug mode |
|
| Server port |
|
| Log level (DEBUG, INFO, WARNING, ERROR) |
|
Running the Server
Usage with Claude Desktop
Add to your Claude Desktop configuration file:
Platform | Config Location |
macOS |
|
Windows |
|
Linux |
|
Option 1: Using launch script (recommended)
Option 2: Using absolute path to uv
First, find your uv path: which uv
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"
Available Tools
Fundamental Data
Tool | Description | Parameters |
| Company fundamentals including PE ratio, market cap, EPS, margins, and more |
|
| Annual income statement data (last 20 periods) |
|
| Annual balance sheet data (last 20 periods) |
|
| Annual cash flow statements (last 20 periods) |
|
| Quarterly or annual earnings data |
|
Market Data
Tool | Description | Parameters |
| Daily OHLCV data |
|
| Intraday price data |
|
News & Sentiment
Tool | Description | Parameters |
| Market news with sentiment analysis |
|
Technical Analysis
Tool | Description | Parameters |
| Calculate technical indicators |
|
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 %R
Supported timeframes (TimeFrame enum):
MINUTE- 1 minuteFIVE_MINUTES- 5 minutesFIFTEEN_MINUTES- 15 minutesTHIRTY_MINUTES- 30 minutesHOUR- 1 hourDAILY- DailyWEEKLY- WeeklyMONTHLY- Monthly
Examples
Get company fundamentals:
Analyze price trends:
Technical analysis:
Market news:
Development
API Rate Limits
The free AlphaVantage API tier allows 25 requests per day. Consider upgrading to a premium plan for higher limits.
Security Notes
Never commit API keys to version control
Use environment variables or secure secret management for API keys
The server validates all inputs to prevent injection attacks