Skip to main content
Glama

get_stock_quotes

Get real-time stock price quotes for one or more symbols. Returns price, % change, 52-week high/low, exchange, and currency.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
symbolsNoComma-separated ticker symbols (e.g. AAPL,MSFT,NVDA)AAPL,MSFT,NVDA,GOOGL,TSLA
exchangeNoFilter by exchange: NYSE or NASDAQ

TDQS

B3.4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description is the sole source of behavioral information. It states 'real-time stock price quotes', implying a read-only operation with no destructive effects. However, it does not disclose potential rate limits, authentication requirements, or error handling behavior, which is a moderate gap for a data retrieval tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise, consisting of two sentences that efficiently convey the tool's action and output. It is front-loaded with the core purpose. However, it could be slightly more structured (e.g., listing parameters explicitly) to improve scanability.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (2 optional parameters, no output schema), the description is adequate but not fully complete. It lists key returned fields but does not cover edge cases (e.g., invalid symbols, network errors) or specify the response format. Since there is no output schema, more detail about the output structure would improve completeness.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3. The description does not add additional meaning beyond the schema: it mentions 'one or more symbols' and the returned fields, but the schema already documents the parameters fully (e.g., comma-separated symbols, exchange filter). No extra semantic value is provided.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'Get' and the resource 'real-time stock price quotes', and specifies the returned fields (price, % change, 52-week high/low, exchange, currency). It effectively distinguishes itself from sibling tools like 'get_institutional_holdings' and 'get_market_indices' by focusing on individual stock quotes.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no explicit guidance on when to use this tool versus its siblings. It does not mention any prerequisites, exclusions, or context that would help an agent choose between this and alternatives like 'get_institutional_holdings' or 'get_market_indices'.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4/5.0
Disambiguation5/5

Each tool targets a distinct area: institutional holdings, market indices, and stock quotes, with no overlap in purpose.

Naming Consistency5/5

All tool names follow a consistent 'get_' prefix followed by a descriptive noun phrase (institutional_holdings, market_indices, stock_quotes).

Tool Count5/5

Three tools is appropriate for a focused market data server, covering key data points without being too sparse or too heavy.

Completeness4/5

Covers stock quotes, indices, and institutional holdings, but lacks historical data, fundamental metrics, or news, which are common in market data APIs.

Resources