Skip to main content
Glama
FindDataTechnology

fd-cn-report

Official

clear_cache

Remove cached annual report entries for a specific stock and year, or clear all stored filings when no filters are set, so subsequent lookups fetch current data.

Instructions

Evict cached annual reports.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
yearNowhen set alongside ``stock_code``, evict only that stock+year. Both unset → evict everything.
stock_codeNowhen set, evict only entries for that stock.

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?

No annotations are provided, so the description carries the full behavioral burden. 'Evict' hints at destruction, but it does not disclose whether eviction is reversible, what permissions are required, whether it runs immediately, or the impact of clearing a shared cache. This is a significant gap for a mutating tool with zero annotation coverage.

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 waste. Every word earns its place, and the core action is immediately clear.

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

Completeness2/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 not be explained. However, for a cache-eviction mutation with no annotations, the description omits reversible/permission/impact context and any relation to list_cache, leaving the agent insufficiently informed about a destructive operation.

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%, and the schema thoroughly documents the scoping behavior of year and stock_code. The description adds nothing beyond the schema, so the baseline of 3 applies when structured data already does the heavy lifting.

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 ('Evict') and resource ('cached annual reports'), which is far more informative than a tautology. It is clear what the tool does, though it does not explicitly contrast itself with the sibling list_cache, so sibling 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 guidance on when to use this tool, when not to, or how it relates to list_cache. The description gives no prerequisites or caution about the eviction being a mutating/irreversible operation, leaving the agent to infer usage entirely.

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