Skip to main content
Glama
FindDataTechnology

fd-cn-report

Official

get_szse_interaction

Fetch investor Q&A for a SZSE-listed company from irm.cninfo.com.cn. Returns questions and answers to support financial analysis and due diligence.

Instructions

Fetch 互动易 investor Q&A for a SZSE-listed company (irm.cninfo.com.cn).

Returns: {stock_code, source, questions: [...]} or {error}.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
ticker_or_nameYes

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
Behavior3/5

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

No annotations are provided, so the description carries the burden alone. It does disclose the response shape and the existence of an error case, which is useful behavioral context, but says nothing about authentication, rate limits, pagination of the Q&A list, or freshness of the data.

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 tight sentences: purpose first, return contract second. No filler, and the key domain is front-loaded.

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, making the return-value sentence largely redundant, while the two input parameters remain entirely unexplained. Adequate to identify the tool but incomplete for calling it correctly with non-default inputs.

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

Parameters2/5

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

Schema description coverage is 0% for both parameters, and the description adds nothing about them. 'ticker_or_name' is ambiguous (which formats, aliases?), and 'limit' (default 20) is undocumented as to what it limits and its bounds.

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 ('Fetch') and resource ('互动易 investor Q&A for a SZSE-listed company') with the data source domain (irm.cninfo.com.cn), which is unambiguous. It implies the split from the sibling get_sse_interaction via 'SZSE-listed' but never names it, so the differentiation is left to inference.

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?

There is no when-to-use guidance, no mention of the SSE sibling, and no conditions or prerequisites for calling it. The agent must guess that this is the SZSE counterpart and when it is preferred over other company-data tools.

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