Skip to main content
Glama
mz462

stock-research-mcp

by mz462

get_quote

Pull real-time quote data for any stock ticker to access current price, change, volume, and more.

Instructions

Get real-time quote for a stock.

Args: ticker: Stock symbol (e.g., 'AAPL', 'MSFT')

Returns: Quote data including price, change, volume, and more.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tickerYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.5/5.0
Behavior3/5

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

No annotations are provided, so the description must carry the behavioral disclosure burden. 'Get' implies a read-only query and the Returns section lists what data comes back, but nothing is said about authentication, rate limits, or whether the quote is delayed or live. Acceptable for a simple read tool but not richly transparent.

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 and front-loaded with the main purpose, followed by a compact Args/Returns structure. Each section earns its place, though the docstring format is slightly more verbose than necessary.

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?

The tool is simple with one parameter and an output schema, so the description is mostly sufficient. However, it lacks usage guidance and behavioral context like whether the quote is live or delayed. It is adequate but not comprehensive.

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

Parameters4/5

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

The schema only provides 'ticker' as a string with no description, so the description compensates by explaining that ticker is a stock symbol and giving concrete examples ('AAPL', 'MSFT'). This adds real meaning beyond the schema.

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

Purpose4/5

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

The description uses a clear verb-resource pair: 'Get real-time quote for a stock.' It conveys the tool's core function and distinguishes it from siblings like get_technical_indicators and get_macro_context, though it does not explicitly name them.

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

Usage Guidelines3/5

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

Usage context is implied: an agent would use this when it needs a current stock quote. But there is no explicit guidance on when not to use it or which alternative tool to choose, leaving some interpretation to the agent.

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