Skip to main content
Glama
FindDataTechnology

fd-cn-report

Official

get_ministry_stat

Retrieve and parse HTML statistical tables from a specified Chinese ministry (mof, pboc, safe, gacc, nfra) to extract structured data for financial reporting.

Instructions

Fetch a ministry's statistics page and parse its HTML tables.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlNooptional explicit stat-page URL (overrides the default).
limitNomax rows per table.
ministry_idYesone of nbs/mof/pboc/safe/gacc/nfra (use get_nbs_stat for nbs).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.4

TDQS

C2.9/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, and it discloses little beyond the mechanics: no mention of network dependency, the fragility of HTML-table parsing, error behavior for unreachable/blocked pages, or rate limits. It doesn't contradict anything, but for a scraping tool the omissions are meaningful.

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?

A single efficient sentence with the action front-loaded and no filler. It is appropriately sized, though the brevity contributes to the completeness gaps elsewhere.

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?

An output schema exists, so return values need no explanation, and the parameters are fully documented. However, with zero annotations and no usage or behavioral context, the definition is only minimally viable for a network-scraping tool.

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 both the url-override and limit semantics are already documented in the schema, giving a baseline of 3. The description adds no parameter-level detail beyond what the structured fields provide.

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 pair ('fetch' and 'parse') plus a clear resource ('a ministry's statistics page'), so the agent knows exactly what happens. It does not itself distinguish from siblings like get_nbs_stat or list_ministries – that routing note lives only in the schema parameter description.

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 offers no when-to-use or when-not-to-use guidance. The only routing hint ('use get_nbs_stat for nbs') appears in the ministry_id schema field, not in the description, so the agent gets no proactive direction about alternatives such as list_ministries.

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