Skip to main content
Glama
FindDataTechnology

fd-cn-report

Official

get_special_report

Retrieve special-type CN-A-share reports, such as prospectuses or acquisition reports, by CNINFO category for a ticker or company name.

Instructions

Retrieve a special-type report for a CN-A-share company by CNINFO category.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
yearNooptional publish-year window (FY year for periodic reports).
limitNomax filings to consider (default 5); the top (most recent) is used.
sectionNooptional section selector (exact title, regex, or 1-based ordinal — same grammar as `extract_section`). When omitted, the PDF is NOT downloaded; only filing metadata + pdf_url are returned.
categoryYesCNINFO category — a catalog name (e.g. "招股说明书", "收购报告书", "业绩预告") or raw `category_*` code. Use `list_report_types` to browse.
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

B3.1/5.0
Behavior2/5

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

With no annotations, the description carries the full behavioral burden, yet it discloses nothing about operation semantics. It never states that this is a read-only fetch, what happens when 'section' is omitted (metadata-only, no PDF download), or how limit/year interact — all of which sit in the schema rather than the description.

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?

A single front-loaded sentence with zero filler; the core verb-resource-scope is presented immediately. Appropriately sized for the information it chooses to convey.

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

Completeness3/5

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

For a 5-parameter tool with subtle behaviors (optional section triggering PDF download, limit-based selection), a one-sentence description is minimal. Rich schema coverage and an output schema reduce the burden, but the description still omits any behavioral framing an agent would want before calling it.

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 all five parameters (year, limit, section, category, ticker_or_name) are already documented in the schema, establishing a baseline of 3. The description adds only 'by CNINFO category', which does not extend beyond what the schema provides.

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 concrete verb (Retrieve) and resource (special-type report) with scoping to CN-A-share companies and CNINFO categories, so the intent is identifiable. However, 'special-type report' is never defined, and the description does not distinguish this from siblings like get_filing or search_reports, leaving the agent to infer what makes a report 'special'.

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 gives no when-to-use or when-not-to-use guidance and never names an alternative (get_filing, get_section, search_reports). The only routing hint ('Use list_report_types to browse') lives in the schema, not the description.

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