Skip to main content
Glama
FindDataTechnology

fd-cn-report

Official

extract_indicators

Pull multiple financial indicators for a Chinese company/year in one pass by fetching the annual report once, computing derived ratios, and caching results for reuse.

Instructions

Extract many indicators for one company/year in a single pass.

Fetches the annual-report PDF once, groups report-rules by section (one LLM call per section), dispatches Python extractors individually, and computes derived ratios locally. Caches the bundle to disk so repeat calls are free.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
formNoform name; defaults to "年度报告".年度报告
yearYesfiscal year.
indicatorsNooptional list of indicator names; omit to attempt every rule applicable to the company. Unknown / non-applicable names go to `missing`.
extractor_modeNo"auto" (default — each rule's declared extractor), "llm" (force LLM for report rules), or "python" (skip report rules whose extractor is LLM — LLM-free run).auto
ticker_or_nameYesticker or name (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.5/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 largely delivers: it discloses single PDF fetch, section grouping, one LLM call per section, per-rule Python extractor dispatch, local ratio computation, and disk caching (a persistence side effect). It omits error behavior, permissions, and rate limits, 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.

Conciseness4/5

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

Front-loaded purpose sentence followed by a dense but relevant mechanics sentence; no filler. The single long sentence packs many clauses, but each earns its place by disclosing real behavior.

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 needn't be described, and params are fully schema-covered. The description adequately conveys the batch-extraction model and caching behavior; the main omission is routing guidance relative to sibling extraction tools.

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 ticker_or_name, year, form, indicators, and extractor_mode. The description adds no parameter-level detail beyond what the schema provides, so the baseline 3 applies.

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 states a specific verb (extract), resource (indicators), and scope (one company/year in a single pass), which lets an agent distinguish it from per-position or per-section extraction. It does not explicitly name the closest sibling, extract_indicators_by_position, so the differentiation is implied rather than stated.

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 explains how the tool works but gives no explicit guidance on when to choose it over extract_section, ai_extract, or extract_indicators_by_position. There is only a weak implied 'batch/whole-company' framing, with no when-not conditions or prerequisites.

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