Skip to main content
Glama

Live-check Published Transport Evidence

verify_evidence
Read-onlyIdempotent

Run a rate-limited live-vs-published comparison for a direct-access dataset and return a match, mismatch, unreachable, or not_verifiable verdict.

Instructions

Use when a fresh, rate-limited live-vs-published comparison is needed for a direct-access dataset, for example after asking whether a government dataset is reachable now. Performs a rate-limited live GET and returns comparable transport receipts plus a match, mismatch, unreachable, or not_verifiable verdict. This live check is an observation, not semantic truth: it does not recompute content dates, record counts, or shape fingerprints. Results are ephemeral and do not update published health artifacts. For a deep audit use search_datasets → get_evidence → verify_evidence → verify_attestation.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataset_idYesCanonical direct-access dataset identifier for a rate-limited live transport observation, e.g. 'fuelprice'; browser-dependent sources cannot be fetched here.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv0.12.0
    • changedInput schema / properties / dataset_id / description
      Previous value: -"Canonical direct-access dataset identifier to re-fetch, e.g. 'fuelprice'."New value: +"Canonical direct-access dataset identifier for a rate-limited live transport observation, e.g. 'fuelprice'; browser-dependent sources cannot be fetched here."
  2. Addedv1.0.2

TDQS

A5/5.0
Behavior5/5

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

Annotations declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, and the description reinforces these by noting results are ephemeral, do not update artifacts, and are an observation rather than semantic truth. The rate-limited live GET behavior is also disclosed.

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 concise but information-dense: it covers use case, behavior, limitations, and related workflow in three sentences. No irrelevant or redundant content; structure flows logically from when to use to what to expect.

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?

Despite having an output schema, the description gives enough context about return contents (transport receipts plus verdict types) and explicitly states non-goals (no recomputation, no artifact updates). It also situates the tool within a broader audit workflow, making it complete for correct invocation.

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?

The single required parameter dataset_id is fully described in the schema with a clear meaning, example, and constraint (minLength=1). The description adds direct-access context, so the parameter semantics are complete beyond the schema.

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's purpose: performing a live-vs-published comparison for a direct-access dataset and returning a verdict. It also distinguishes behavior from deeper audits by directing users to the search_datasets → get_evidence → verify_evidence → verify_attestation path.

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?

Explicitly states when to use the tool (fresh, rate-limited live-vs-published comparison; checking if a government dataset is reachable now) and what it does not do (recompute content dates, record counts, or shape fingerprints; update published health artifacts). Provides an alternative path for deeper audits.

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