An MCP Server for Alpha Vantage
- Python 3.12+
- uv package manager
- MCP-compatible client (e.g., Claude for Desktop)
-
Clone this repository:
git clone https://github.com/nazimboudeffa/mcp-server-alphavantage.git cd mcp-server-alphavantage
-
Install dependencies
pip install uv uv add "mcp[cli]"
-
Create a .env file with your API KEY:
API_KEY=demo
-
Install the server
mcp install server.py
Check the Claude for Desktop config file
{
"mcpServers": {
"alphavantage": {
"command": "C:\\Users\\YOU_USERNAME\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\uv.EXE",
"args": [
"run",
"--with",
"mcp[cli]",
"mcp",
"run",
"C:\\Users\\YOUR_USERNAME\\Documents\\GitHub\\mcp-server-alphavantage\\server.py"
]
}
}
}