Skip to main content
Glama
FindDataTechnology

fd-cn-report

Official

get_indicator

Resolve a named financial indicator for a company and period, routing to akshare, annual report PDF sections, or computed ratios.

Instructions

Resolve one named financial indicator for a company + period.

Routes per the rule's source_type: akshare line items, annual-report PDF section (LLM or registered Python extractor), or locally-computed ratio.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
yearYesfiscal year.
periodNo"annual" (default) or "quarterly" (akshare only).annual
indicatorYesindicator name (exact, alias, or normalized substring) — e.g. "资本充足率", "资产负债率", "营业收入".
ticker_or_nameYes6-digit ticker or name fragment (see get_company).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.4

TDQS

A3.8/5.0
Behavior4/5

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

With no annotations, the description carries the full burden, and it does disclose useful behavior: resolution routes by `source_type` across akshare line items, annual-report PDF sections (LLM or registered Python extractor), or locally-computed ratios. This tells the agent the call may trigger extraction or computation rather than a plain lookup. It omits auth/caching/error behavior, keeping it short of a 5.

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?

Two sentences, no filler, with the core purpose front-loaded before the routing detail. Every clause carries information.

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 no explanation, and all four parameters are schema-documented. The description adequately covers what the call does. Minor gap: nothing about what happens when a quarterly request hits a non-akshare source, or what the caller receives on resolution failure.

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 schema already documents indicator aliasing, period, year, and ticker formats. The description adds only the 'company + period' framing and the routing hint, which is baseline for a fully documented 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?

States a specific verb ('Resolve') and resource ('one named financial indicator') with the scoping dimensions (company + period). It is distinguishable from list_indicators and extract_indicators, though it never explicitly contrasts itself with those siblings. Clear but not self-differentiating.

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?

The routing sentence implies this is the single-indicator resolution path, distinguishing it implicitly from the batch-oriented list_indicators/extract_indicators tools. However, there is no explicit when-to-use statement, no mention of prerequisites (e.g., the indicator must exist in a rule set), and no guidance on failure cases.

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