Skip to main content
Glama

Inspect Dataset Health and Details

get_dataset
Read-onlyIdempotent

Return full detail for one dataset id, including its latest health status and last-verified timestamp, content_freshness_date, and freshness_signal_source (last_modified, content_parse, or none). Use to fetch the provenance/citation metadata for a dataset found via search_datasets and distinguish unknown-freshness from proven stale data.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataset_idYesCanonical dataset identifier, e.g. 'dosm_cpi_state'. See the registry catalogue for valid IDs.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed1 schema field changed
    • addedInput schema / properties / dataset_id / examples
      Added value: +[
      +  "dosm_cpi_state"
      +]
  2. Changed2 schema fields changed
    • addedInput schema / properties / dataset_id / description
      Added value: +"Canonical dataset identifier, e.g. 'dosm_cpi_state'. See the registry catalogue for valid IDs."
    • addedInput schema / properties / dataset_id / minLength
      Added value: +1
  3. First observed

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false, so the safety profile is covered. The description adds valuable behavioral context by specifying what freshness_signal_source values mean (last_modified, content_parse, or none) and that the tool can distinguish unknown-freshness from stale data, which is not evident from annotations alone.

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 only two sentences. The first sentence states purpose and return fields, the second gives usage context and adds nuance about freshness signals. Every word earns its place, with zero fluff and strong front-loading.

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?

The tool is simple (one parameter, no nested objects) and has both input and output schemas. The description covers the key differentiator (freshness signal semantics), provides usage context via search_datasets, and the output schema can explain return values. There are no obvious gaps for an AI agent to use this tool correctly.

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%: dataset_id has a clear description with an example. The description does not add parameter semantics beyond 'one dataset id', which is already clear from the schema. Per calibration, baseline 3 applies when schema does the heavy lifting, and no extra parameter detail is needed.

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 clearly states the tool 'Return full detail for one dataset id' and lists specific fields (health status, last-verified timestamp, content_freshness_date, freshness_signal_source). This distinguishes it from siblings like search_datasets (finding datasets) and find_stale (finding stale datasets), and even from get_provenance by emphasizing health/freshness in addition to provenance metadata.

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

Usage Guidelines4/5

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

The description explicitly says 'Use to fetch the provenance/citation metadata for a dataset found via search_datasets' and 'distinguish unknown-freshness from proven stale data', giving clear context on when this tool is appropriate. It does not mention explicit exclusions or 'instead' alternatives, but the context is sufficient for an AI agent to select it over search_datasets.

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.

TDQS

A4.4/5.0
Disambiguation4/5

Each tool targets a distinct workflow—search, detail retrieval, freshness checking, licence enumeration, and citation metadata. The only mild overlap is between get_dataset and get_provenance, both exposing metadata, but their descriptions differentiate full health/freshness detail from citation-ready provenance.

Naming Consistency5/5

All tool names follow a clear verb_noun pattern in snake_case: find_, get_, and search_ prefixes are used consistently. Minor stylistic variation between find_by_licence and find_stale does not undermine predictability.

Tool Count5/5

Five tools is well-scoped for a dataset catalog server, covering discovery, inspection, health assessment, licence scoping, and citation. No redundant or excessive tools are present.

Completeness4/5

The core lifecycle is covered: search to find datasets, get_dataset for full detail, find_stale for freshness risk, and get_provenance for citation. A minor gap is the lack of a general list-all or status filter beyond stale, but the domain is narrow enough to work around this.