Skip to main content
Glama
viraj43

INDUSS Research Intelligence MCP Server

by viraj43

financial_statements

Read-only

Retrieves a company's financial statements via a source waterfall, computes ratios and multi-period CAGR, and returns structured data or a not-available status when sources fail.

Instructions

Retrieves a company's financial statements through a source waterfall: screener.in's structured profit-and-loss/balance-sheet/cash-flow tables first (real multi-period data for any covered listed company), then positional table recovery from filing PDFs (BSE/NSE results, annual reports), then generic HTML table scraping, then keyword-context text windows as a last resort. Returns ready-to-use FinancialStatement[] — the same shape ratio_analysis consumes — with ratios and multi-period CAGR trend computed inline by default. Never returns bare nulls: when data can't be found, returns a structured not_available status naming which sources were checked.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
contextYes
includeRatiosNoCompute ratio_analysis's full ratio set + multi-period CAGR trend inline once statements are extracted, so callers don't need a second round-trip.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.7/5.0
Behavior5/5

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

The description discloses several behavioral traits beyond annotations: the source waterfall order, inline computation of ratios and CAGR, and the structured not_available fallback instead of bare nulls. These details help set expectations accurately.

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 moderately long but each sentence adds value, covering the waterfall, return shape, inline computation, and error handling. It could be slightly more concise by trimming redundant phrasing, but it is well-structured.

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?

Given the tool's complexity (nested context object, multiple sources, no output schema), the description covers data sources, return shape, and error behavior adequately. However, it does not clarify the role of the 'listed' and 'country' fields in the context object, which are only partially described in the schema.

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

Parameters2/5

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

The description adds no additional meaning for individual parameters beyond what the schema already provides. With only 50% schema description coverage and no parameter-specific clarification, this dimension falls short.

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 tool retrieves financial statements, with a specific verb and resource. It also distinguishes the output shape as the one consumed by ratio_analysis, providing clear purpose.

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 lacks explicit guidance on when to use this tool versus sibling tools. It mentions the return shape is the same as ratio_analysis consumes, which implies a use case, but it does not name alternatives or provide conditions for selection.

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