This Alpha Vantage MCP server provides AI assistants with real-time access to financial market data through a standardized interface. Developed using Python, it integrates with the free Alpha Vantage API to offer tools for retrieving stock quotes, company information, cryptocurrency exchange rates, and historical price data. The server abstracts the complexities of API authentication, rate limiting, and error handling, enabling AI systems to seamlessly incorporate financial data into their workflows. It's particularly valuable for AI assistants focused on financial analysis, investment research, and market trend identification, facilitating use cases such as portfolio management, algorithmic trading strategy development, and automated financial reporting.
暂无评论. 成为第一个评论的人!
登录以参与讨论
Get the latest stock quote for a specific company. Parameters: symbol (string) - Stock symbol (e.g., AAPL, MSFT)
Get stock-related information for a specific company. Parameters: symbol (string) - Stock symbol (e.g., AAPL, MSFT)
Get current cryptocurrency exchange rates. Parameters: crypto_symbol (string) - Cryptocurrency symbol (e.g., BTC, ETH); market (string, default: 'USD') - Market currency (e.g., USD, EUR)
Get historical daily price data for a stock. Parameters: symbol (string) - Stock symbol (e.g., AAPL, MSFT); outputsize (string, default: 'compact') - 'compact' for latest 100 data points or 'full' for up to 20 years of data
Get historical options chain data with sorting capabilities. Parameters: symbol (string) - Stock symbol (e.g., AAPL, MSFT); date (string, optional) - Trading date in YYYY-MM-DD format; limit (integer, default: 10) - Number of contracts to return; sort_by (string, default: 'strike') - Field to sort by; sort_order (string, default: 'asc') - Sort order
Get daily time series data for a cryptocurrency. Parameters: symbol (string) - Cryptocurrency symbol (e.g., BTC, ETH); market (string, default: 'USD') - Market currency (e.g., USD, EUR)
Get weekly time series data for a cryptocurrency. Parameters: symbol (string) - Cryptocurrency symbol (e.g., BTC, ETH); market (string, default: 'USD') - Market currency (e.g., USD, EUR)
Get monthly time series data for a cryptocurrency. Parameters: symbol (string) - Cryptocurrency symbol (e.g., BTC, ETH); market (string, default: 'USD') - Market currency (e.g., USD, EUR)