MCP Stock Market
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| ALPHA_VANTAGE_API_KEY | Yes | Alpha Vantage API key (can be obtained from https://www.alphavantage.co/support/#api-key) |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| getStockPriceB | Get the latest stock price for a given ticker symbol using Alpha Vantage API |
| getStockNewsC | Get the latest news for a stock ticker symbol using Alpha Vantage API |
| getCompanyOverviewB | Get company information for a given stock ticker symbol using Alpha Vantage API |
| getDividendHistoryB | Get recent dividend payout history for a ticker symbol using Alpha Vantage API |
| getIntradayA | Get recent intraday stock prices (5-minute intervals) for a ticker symbol using Alpha Vantage API |
| convertCurrencyC | Convert an amount from one currency to another using latest exchange rate |
| calculatePortfolioValueC | Calculate total value of a portfolio given holdings |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 7 tools
Most tools have distinct purposes targeting different data types (price, news, dividends, company info, portfolio value, currency conversion). However, getStockPrice and getIntraday both provide price data, which could cause confusion about which to use for basic price queries, though getIntraday specifies intraday intervals while getStockPrice suggests latest price.
Tool names follow a consistent verb_noun pattern with clear, descriptive names (e.g., getStockPrice, calculatePortfolioValue). The only minor deviation is convertCurrency, which uses 'convert' instead of 'get' or 'calculate', but this is appropriate for its action and maintains readability.
With 7 tools, the count is well-scoped for a stock market server, covering key operations like price lookup, news, company info, dividends, portfolio valuation, and currency conversion. Each tool earns its place without bloat or thin coverage.
The toolset covers essential stock market data retrieval (price, news, company info, dividends) and utility functions (portfolio value, currency conversion). Minor gaps include lack of historical price data beyond intraday, market indices, or trading actions (e.g., buy/sell simulations), but core workflows are well-supported.