Official stock market data via Alpha Vantage
## Alpha Vantage MCP Server: Financial Data The **Alpha Vantage MCP Server** integrates Alpha Vantage's financial data APIs into Google Antigravity, enabling developers to access stock prices, forex rates, and economic indicators through AI-assisted financial analysis. ### Why Alpha Vantage MCP? - **Free Tier**: Generous free API access for developers - **Comprehensive Data**: Stocks, forex, crypto, and economic data - **Technical Indicators**: 50+ technical analysis indicators - **Fundamental Data**: Earnings, balance sheets, and cash flow - **Global Coverage**: Markets worldwide ### Key Features #### 1. Stock Data ```javascript // Get stock quote const quote = await alphavantage.getQuote({ symbol: "AAPL" }); console.log("Price:", quote.price); console.log("Change:", quote.change_percent); // Get time series const timeSeries = await alphavantage.getTimeSeries({ symbol: "MSFT", interval: "daily", outputSize: "compact" }); // Get intraday data const intraday = await alphavantage.getIntraday({ symbol: "GOOGL", interval: "5min" }); ``` #### 2. Technical Analysis ```javascript // Get technical indicators const sma = await alphavantage.getSMA({ symbol: "AAPL", interval: "daily", time_period: 20 }); const rsi = await alphavantage.getRSI({ symbol: "AAPL", interval: "daily", time_period: 14 }); const macd = await alphavantage.getMACD({ symbol: "TSLA", interval: "daily" }); // Get fundamental data const earnings = await alphavantage.getEarnings({ symbol: "AAPL" }); const balanceSheet = await alphavantage.getBalanceSheet({ symbol: "MSFT" }); ``` ### Configuration ```json { "mcpServers": { "alpha-vantage": { "command": "npx", "args": ["-y", "@anthropic/mcp-alphavantage"], "env": { "ALPHAVANTAGE_API_KEY": "your-api-key" } } } } ``` ### Use Cases **Market Analysis**: Analyze stock performance and trends. **Trading Strategies**: Build data-driven trading algorithms. **Financial Research**: Research companies with fundamental data. The Alpha Vantage MCP Server brings financial market data to your workflow.
{
"mcpServers": {
"alpha-vantage": {
"mcpServers": {
"alpha-vantage": {
"url": "https://mcp.alphavantage.co",
"type": "streamable-http"
}
}
}
}
}