Loading...

Alpha Vantage MCP provides real-time financial data access, including stock quotes, company information, crypto rates, and options data, via a standardized interface.
Boost this tool
Subscribe to listing upgrades or segmented pushes.
Alpha Vantage MCP provides real-time financial data access, including stock quotes, company information, crypto rates, and options data, via a standardized interface.
This server is generally safe for read-only financial data retrieval. However, securing the API key is crucial. Exercise caution when using tools that access sensitive financial information, especially with real-time options data.
Performance depends on the Alpha Vantage API. Rate limits may impact performance.
Cost depends on Alpha Vantage API usage and subscription tier.
npx -y @smithery/cli install @berlinbra/alpha-vantage-mcp --client claude{
"mcpServers": {
"alphavantage": {
"command": "docker",
"args": [
"run",
"-i",
"-e",
"ALPHA_VANTAGE_API_KEY",
"mcp/alpha-vantage"
],
"env": {
"ALPHA_VANTAGE_API_KEY": "REPLACE_API_KEY"
}
}
}
}AAPLUSDget-stock-quoteRetrieves the latest stock quote for a given company.
Read-only operation, no side effects.
get-company-infoRetrieves stock-related information for a specific company.
Read-only operation, no side effects.
get-crypto-exchange-rateRetrieves current cryptocurrency exchange rates.
Read-only operation, no side effects.
get-time-seriesRetrieves historical daily price data for a stock.
Read-only operation, no side effects.
get-realtime-optionsRetrieves real-time options chain data.
Read-only operation, requires premium API key.
get-historical-optionsRetrieves historical options chain data with filtering.
Read-only operation, no side effects.
get-etf-profileRetrieves ETF profile information including holdings.
Read-only operation, no side effects.
get-crypto-dailyRetrieves daily time series data for a cryptocurrency.
Read-only operation, no side effects.
get-crypto-weeklyRetrieves weekly time series data for a cryptocurrency.
Read-only operation, no side effects.
get-crypto-monthlyRetrieves monthly time series data for a cryptocurrency.
Read-only operation, no side effects.
get-earnings-calendarRetrieves upcoming earnings calendar data for companies.
Read-only operation, no side effects.
get-historical-earningsRetrieves historical earnings data for a specific company.
Read-only operation, no side effects.
API Key
cloud
This server is generally safe for read-only financial data retrieval. However, securing the API key is crucial. Exercise caution when using tools that access sensitive financial information, especially with real-time options data.
All tools are read-only, limiting the risk of unintended consequences.
Production Tip
Monitor API usage to avoid exceeding rate limits.
You need an Alpha Vantage API key. You can obtain one for free (limited usage) or subscribe for higher limits.
Rate limits depend on your Alpha Vantage API key tier. Check the Alpha Vantage documentation for details.
Some data is real-time (e.g., stock quotes, crypto rates), while others are delayed (e.g., historical data).
The server provides built-in error handling. Check the logs for details.
Check the Alpha Vantage API terms of service for commercial usage restrictions.
The server primarily returns data in JSON format.
Use the `get-historical-options` tool with the appropriate filters (date, expiry_date, strike, etc.).