https://github.com/calvernaz/alphavantage
A MCP server for the stock market data API, Alphavantage API.
https://github.com/calvernaz/alphavantage
Last synced: 26 days ago
JSON representation
A MCP server for the stock market data API, Alphavantage API.
- Host: GitHub
- URL: https://github.com/calvernaz/alphavantage
- Owner: calvernaz
- License: apache-2.0
- Created: 2024-12-06T18:47:39.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-03-12T09:27:30.000Z (about 1 month ago)
- Last Synced: 2025-03-12T10:31:45.639Z (about 1 month ago)
- Language: Python
- Homepage:
- Size: 74.2 KB
- Stars: 12
- Watchers: 1
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- awesome-mcp-zh - AlphaVantage
- Awesome-MCP-Servers-directory - AlphaVantage - MCP server for stock market data API AlphaVantage (Finance)
- awesome-mcp-servers - AlphaVantage - A MCP server for the stock market data API, Alphavantage API. (Table of Contents / Finance)
- awesome-mcp-servers - AlphaVantage - A MCP server for the stock market data API, Alphavantage API. (Table of Contents / Finance)
README
# Alphavantage MCP Server
[](https://smithery.ai/server/alphavantage)
A MCP server for the stock market data API, Alphavantage API.
## Configuration
### Getting an API Key
1. Sign up for a [Free Alphavantage API key](https://www.alphavantage.co/support/#api-key)
2. Add the API key to your environment variables as `ALPHAVANTAGE_API_KEY`## Clone the project
```bash
git clone https://github.com/calvernaz/alphavantage.git
```### Usage with Claude Desktop
Add this to your `claude_desktop_config.json`:**NOTE** Make sure you replace the `` with the directory of the cloned project.
```
{
"mcpServers": {
"alphavantage": {
"command": "uv",
"args": [
"--directory",
"/alphavantage",
"run",
"alphavantage"
],
"env": {
"ALPHAVANTAGE_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
}
```