Skip to main content
Glama
FindDataTechnology

fd-cn-report

Official

list_ministries

Lists supported Chinese ministry statistics sources with each source's ID, label, English name, transport type, and base URL.

Instructions

List the supported ministry statistics sources.

Returns: {ministries: [{id, label, en, transport, base}], count} or {error}.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.4

TDQS

A3.7/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full burden. It does disclose the exact return envelope, including the {error} branch, and 'supported' implies a static enumeration, which is genuinely useful. However, it says nothing about the read-only nature, error conditions, or whether the list can change, leaving gaps for an unannotated tool.

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 short sentences, purpose front-loaded before the return shape, with no filler. 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?

With an output schema present and zero parameters, the description need not explain return fields in detail, and it already names the envelope. What is missing is the relationship to get_ministry_stat and any hint about how the listed sources should be used.

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

Parameters4/5

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

The tool takes zero parameters, so the baseline of 4 applies and there is no parameter meaning for the description to add.

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 and resource ('List the supported ministry statistics sources'), which clearly distinguishes it from the get_ministry_stat sibling that retrieves a single stat. It does not explicitly name or contrast any sibling, but the list-vs-get distinction is inferable from the verb choice.

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?

There is no explicit statement of when to call this versus alternatives or any prerequisite context. Usage is only implied: listing the supported sources suggests it is the discovery step that yields ids for get_ministry_stat, but the description never says so.

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