Skip to main content
Glama
Sauravmehto

Local Stock Analyst MCP

by Sauravmehto

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
PORTNoThe port to use for the server when MCP_TRANSPORT is set to 'http'.
MCP_TRANSPORTNoThe transport mode to use for the MCP server. Can be 'stdio' (default) or 'http'.stdio
FINNHUB_API_KEYNoAPI key for Finnhub, which serves as the primary data provider.
ALPHAVANTAGE_API_KEYNoAPI 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

CapabilityDetails
tools
{
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
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

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

B3.4/5.0

Scored across 8 tools

Disambiguation4/5

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.

Naming Consistency5/5

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.

Tool Count5/5

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.

Completeness4/5

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.