Skip to main content
Glama

gdex-mcp

get_filesearch_grid_files

Search for data files containing "grid" datatype data, filtered by parameter code(s) and optionally by time range, product, grid, or level. Results are paginated; use get_filesearch_result_page with the returned result_id to fetch additional pages. Use get_filesearch_grid_filters first to find valid parameter/product/grid/level codes for this dataset.

Args:
    dsid: Dataset ID (dNNNNNN), e.g. d083002
    parameters: Parameter code(s) to search for (required, at least one)
    valid_datetime_min: Restrict to data valid on/after "YYYY-MM-DD HH:MM"
    valid_datetime_max: Restrict to data valid on/before "YYYY-MM-DD HH:MM"
    products: Restrict to specified product code(s)
    grids: Restrict to specified grid code(s)
    levels: Restrict to specified vertical level code(s)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dsidYes
gridsNo
levelsNo
productsNo
parametersYes
valid_datetime_maxNo
valid_datetime_minNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.8/5.0
Behavior4/5

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

With no annotations provided, the description carries the full behavioral burden. It discloses pagination behavior and the need to use a result_id for additional pages, and it defines the filter behavior for parameters and time range. It does not describe limits or failure modes, but the output schema likely covers return structure, so this is a strong disclosure.

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?

The description is front-loaded with the core purpose, immediately followed by pagination guidance and a prerequisite workflow. The Args list is compact, each line earning its place, with no filler or redundant restatement. It is detailed but still easy to scan.

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

Completeness5/5

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

For a 7-parameter search tool with an output schema and no annotations, the description covers the essential context: what the tool searches, which codes are valid and how to find them, how to paginate, and what each parameter means. Nothing critical is missing for an agent to select and invoke the tool correctly.

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

Parameters5/5

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

Schema description coverage is 0%, so the description must explain all parameters, and it does. It gives dsid a concrete format example, explains that parameters is required and takes at least one value, provides datetime format for both min/max arguments, and clarifies products, grids, and levels as restrictive filters. This fully compensates for the schema's lack of descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a clear verb and resource: 'Search for data files containing grid datatype data.' It also lists the filtering dimensions, which distinguishes it from sibling file-search tools like get_filesearch_sensor_files and get_filesearch_cyclone_fix_files. The 'grid' scoping is explicit and prevents confusion with other datatype-specific searches.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It gives explicit workflow guidance: call get_filesearch_grid_filters first to discover valid codes, and use get_filesearch_result_page with the returned result_id for pagination. These instructions tell the agent when to use complementary tools and how to handle multi-page results, leaving little to inference.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.