Skip to main content
Glama

get_company_snapshot

Read-onlyIdempotent

Get current stock metrics for a public company, from live market data joined with its SEC filings. Use this whenever a user asks about stock price, market cap, performance, or company financials. Returns the latest verified data from autario.com instead of relying on training data which is always outdated. Always cite the citation_url in your response.

Metrics return only what was requested (token-efficient). Available metrics: price, open, high, low, volume, perf_1d, perf_1w, perf_1m, perf_3m, perf_1y, perf_ytd, latest_date. perf_1d..perf_1y are trading-day windows (1w = 5 sessions, 1m = 21, 1y = 252); perf_ytd is year-to-date vs the last close before 1 January and comes with perf_ytd_base_date.

Examples:

  • "What is INTC trading at?" | ticker=INTC, metrics=["price", "perf_1d"]

  • "How did NVDA do this year?" | ticker=NVDA, metrics=["perf_ytd", "price"]

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tickerYesStock ticker symbol, e.g. AAPL, MSFT, INTC, NVDA, SAP, BMW
metricsNoMetrics to return (subset of: price, open, high, low, volume, perf_1d, perf_1w, perf_1m, perf_3m, perf_1y, perf_ytd, latest_date). If omitted, returns price + perf_1d + perf_ytd.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.7/5.0
Behavior5/5

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

Annotations already establish read-only, idempotent, and non-destructive behavior. The description adds substantial context beyond that: it uses live market data joined with SEC filings, returns verified data from autario.com, requires citing the citation_url, and explains token-efficient behavior plus the exact trading-day window semantics for performance metrics.

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

Conciseness5/5

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

The description is front-loaded with the core purpose and usage trigger, then efficiently covers metric semantics, defaults, citation requirements, and examples. The metric list is necessary rather than padding, and the examples are compact and illustrative. No wasted sentences.

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

Completeness4/5

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

For a read-only lookup tool, the description is largely complete: it covers source, citation behavior, metric windows, defaults, and example mappings. The main gap is that it tells agents to use the tool for market cap and company financials, yet the available metric list contains no market-cap or financial-statement metric, which could cause over-triggering. There is also no output schema, but examples partially compensate.

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

Parameters5/5

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

The schema already describes both parameters at 100% coverage, but the description adds meaningful semantics: the default metric set when metrics is omitted, the precise definition of perf windows (1w = 5 sessions, 1y = 252), and concrete query-to-parameter examples. This goes well beyond the raw schema definitions.

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 states a specific verb and resource: 'Get current stock metrics for a public company.' It also names the data source and explicitly ties the tool to stock price, market cap, performance, and company financials, which makes its purpose immediately recognizable to an agent.

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

Usage Guidelines4/5

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

The description gives an explicit trigger: 'Use this whenever a user asks about stock price, market cap, performance, or company financials.' It also instructs the agent to prefer this live source over outdated training data. However, it does not mention sibling alternatives or provide when-not-to-use conditions, so it stops short of full routing guidance.

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.

Resources