Skip to main content
Glama
mohantee

StockAnalysis

by mohantee

get_financials

Retrieve financial statements, key ratios, and balance sheet data for a stock ticker, plus an interactive dashboard link to share with users.

Instructions

Get financial statements, key ratios, and balance sheet data.

Displays quarterly and annual revenue/income charts, profit margins, and balance sheet highlights in an interactive dashboard. A file:/// link to the interactive dashboard is included — always share it with the user.

Args: ticker: Stock ticker symbol (e.g., AAPL, RELIANCE.NS)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tickerYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full burden. It does disclose the output form (an interactive dashboard with charts and highlights) and a non-obvious behavioral requirement to always share the file:/// link, but it omits auth needs, error behavior for invalid tickers, and rate limits.

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?

Front-loaded with the core purpose, then output behavior, then args. Efficient, with each sentence adding something, though the Args block could be tighter.

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?

An output schema exists, so return values need not be explained; the description still adds a useful note that a dashboard link is returned and should be shared. Only error handling and invalid-ticker behavior are missing.

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?

Schema coverage is 0%, so the description must compensate; it documents the single 'ticker' argument and adds meaningful format examples (AAPL, RELIANCE.NS) that reveal international ticker support not present in 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?

Specific verb 'get' plus resource 'financial statements, key ratios, and balance sheet data' clearly states what the tool returns. It is distinguishable from get_stock_price/get_stock_history by content, though it doesn't explicitly contrast itself with analyze_stock or compare_peers.

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?

No guidance on when to choose this over sibling tools such as analyze_stock, compare_peers, or get_technical_analysis. The only directive ('always share it with the user') is an output-handling instruction, not selection guidance.

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