Thanks for your interest in contributing! 🎉
This project is the official MCP (Model Context Protocol) server for Alpha Vantage. Here's how to get started with local development and testing.
git clone https://github.com/calvernaz/alphavantage.git
cd alphavantageYou'll need an Alpha Vantage API key.
Create a .env file in the project root:
touch .envAdd your API key to the .env file:
ALPHAVANTAGE_API_KEY=your_api_key_hereAlternatively, you can export it directly in your terminal:
export ALPHAVANTAGE_API_KEY=your_api_key_hereUse the MCP Inspector to run and test your server locally with hot reload.
npm install -g @modelcontextprotocol/inspectorThen, run the server:
npx @modelcontextprotocol/inspector uv --directory ~/alphavantage run alphavantageReplace ~/code/alphavantage with your actual path to this repo.