An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

        

# Alphavantage MCP Server

[![smithery badge](https://smithery.ai/badge/alphavantage)](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"
}
}
}
}
```