Skip to main content
Glama

gdex-mcp

get_dataset_field

Return one metadata field for a dataset.

Prefer describe_dataset when the user wants a general summary covering
several of these at once (abstract, temporal, spatial_coverage,
variables, data_formats, volume) — this tool is for pulling a single
field, including the fields describe_dataset doesn't cover
(publications, contributors, related_datasets, documentation).

Args:
    dsid: Dataset ID (dNNNNNN), e.g. d083002
    field: One of: abstract, variables, temporal, spatial_coverage,
           publications, contributors, data_formats, volume,
           related_datasets, documentation

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dsidYes
fieldYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.5/5.0
Behavior3/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It implies a read operation via 'Return' but does not explicitly state it is read-only, nor does it mention error behavior (e.g., invalid field or missing dataset). It does list allowed field values, which adds some context, but lacks explicit safety or error disclosure. Given the simple getter nature, this is a minimal but acceptable level.

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 efficient and well-structured: purpose is stated first, then usage guidance, then parameter details in a compact Args block. There is no fluff or repetition; every sentence earns its place.

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?

Given the tool's low complexity (two simple string params) and the presence of an output schema (which covers return format), the description covers purpose, usage, and parameters adequately. It could mention error handling for invalid fields or non-existent datasets, but that is a minor gap given the output schema and the simple nature of the operation.

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%, but the description fully compensates: it provides a concrete example for dsid (d083002) and enumerates all valid field values. This adds meaning far beyond the bare schema, making parameter semantics clear and actionable.

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 specific verb and resource: 'Return one metadata field for a dataset.' It explicitly distinguishes from the sibling describe_dataset by naming the scenario where the sibling is preferred, so an agent can tell them apart without opening schemas.

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 explicitly says when to use describe_dataset (general summary covering several fields) and when to use this tool (single field, including fields describe_dataset doesn't cover). This provides clear when-to-use and when-not-to-use guidance, leaving nothing 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.