Stock Market MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| FINNHUB_API_KEY | Yes | Your Finnhub API key. Get one for free at finnhub.io |
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
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_stock_symbol_lookupA | |
| get_stock_priceA | |
| get_basic_financialsA | |
| get_market_newsA | |
| get_company_newsA | |
| get_stock_candlesA | |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| stock_analysis | Analyze a stock by looking up its basic information, current price, and financial metrics. Example usage: I want to analyze Apple stock. First, look up the symbol for Apple. Then get the current price and basic financial information. Finally, summarize whether this looks like a good investment based on P/E ratio, dividend yield, and recent price movements. |
| market_overview | Get a comprehensive market overview including general market news and data for major indices. Example usage: Give me a market overview with the latest general news and current prices for major indices like AAPL, MSFT, GOOGL, AMZN, and SPY. |
| stock_price_history | Analyze the historical price movement of a stock over a specific time period. Example usage: Show me the price history for TSLA over the past month with daily candles. Identify key support and resistance levels. |
| company_news_analysis | Analyze recent news for a specific company and its potential impact on stock price. Example usage: Analyze recent news for NVDA from 2023-01-01 to 2023-01-31 and tell me how it might affect the stock price. |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 6 tools
Each tool targets a distinct resource: symbol lookup, latest price, financials, market news, company news, and historical candles. The overlap between market news and company news is clear from their descriptions, so no confusion.
All tool names follow the get_ noun pattern in snake_case, e.g., get_stock_price, get_market_news. This is perfectly consistent and predictable.
With 6 tools, the server is well-scoped for stock market data retrieval. Each tool covers a core function without unnecessary bloat.
The server covers symbol lookup, real-time price, fundamentals, news, and historical data, which covers most basic stock market needs. A minor gap is the lack of batch quotes or sector/ETF data, but these are not essential for the stated purpose.