Local Stock Analyst MCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| PORT | No | The port to use for the server when MCP_TRANSPORT is set to 'http'. | |
| MCP_TRANSPORT | No | The transport mode to use for the MCP server. Can be 'stdio' (default) or 'http'. | stdio |
| FINNHUB_API_KEY | No | API key for Finnhub, which serves as the primary data provider. | |
| ALPHAVANTAGE_API_KEY | No | API key for Alpha Vantage, which serves as the fallback data provider. |
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": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_stock_priceB | Get latest traded stock price for a ticker symbol. |
| get_quoteB | Get extended quote fields including open, high, low, and previous close. |
| get_company_profileC | Get company profile details for a ticker. |
| get_candlesB | Get OHLCV candles for a symbol within a unix timestamp range. |
| get_stock_newsC | Get stock news headlines within a date window (YYYY-MM-DD). |
| get_rsiC | Get RSI (Relative Strength Index). Uses provider RSI when available, otherwise computes from candles. |
| get_macdB | Get MACD indicator values. Uses provider MACD when available, otherwise computes from candles. |
| get_key_financialsC | Get key financial metrics for a ticker. |
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 8 tools
Most tools are clearly distinct, targeting different data types like candles, profiles, financials, indicators, quotes, news, and prices. However, get_quote and get_stock_price could be confused as both provide price-related information, with some overlap in purpose (e.g., quote includes price data). The descriptions help differentiate them, but an agent might misselect between these two for basic price queries.
All tools follow a consistent verb_noun pattern with 'get_' prefix, such as get_candles, get_company_profile, and get_key_financials. This predictability makes it easy for agents to understand and use the toolset without confusion from mixed naming conventions.
With 8 tools, the server is well-scoped for a local stock analyst purpose, covering key aspects like price data, financial metrics, technical indicators, and news. Each tool earns its place by addressing a specific need in stock analysis without being overly sparse or bloated.
The toolset provides good coverage for stock analysis, including data retrieval for prices, financials, indicators, and news. Minor gaps exist, such as the lack of tools for updating or managing data (e.g., no set or delete operations), but agents can work around this as the focus is on read-only analysis. Core workflows are well-supported.