Skip to main content
Glama

Get immutable download URL

get_download_url
Read-onlyIdempotent

Return canonical direct download URLs and declared SHA-256 values for a public dataset. This tool never proxies the dataset bytes.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
groupNo
formatNoany
datasetYesDataset family ID such as D02, or its catalog slug.

TDQS

A3.7/5.0
Behavior4/5

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

Annotations already establish read-only, idempotent, non-destructive behavior. The description adds behavioral value beyond those flags: it says the checksums are 'declared' rather than verified, the URLs are 'canonical' and direct, and the tool 'never proxies' bytes. No contradiction with annotations.

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?

Two focused sentences, with the primary result front-loaded and the key non-behavior stated immediately after. Every clause earns its place.

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?

With no output schema, the description should describe not just the high-level return content but enough about the optional parameters and expected result structure to support correct invocation. It does not explain group, leaves format semantics ambiguous, and does not relate this tool to verify_checksum, leaving gaps in a simple but incompletely specified API.

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

Parameters2/5

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

Schema description coverage is only 33% (only dataset is explained), and the description adds no parameter-level meaning for group or format. While format has an enum and default in the schema, its purpose and the meaning of 'any' are not clarified, and group is entirely unexplained.

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 names a specific operation ('Return canonical direct download URLs and declared SHA-256 values') on a specific resource ('a public dataset') and adds a sharp boundary ('never proxies the dataset bytes'). This distinguishes it from sibling metadata/list/search tools even without naming them.

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

Usage Guidelines3/5

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

The text implies the tool is for retrieval of direct download URLs and checksums, but it does not explicitly state when to prefer it over siblings such as verify_checksum, nor does it state exclusions like 'use only for public datasets' or 'do not use to fetch file contents.' Usage context is clear but guidance is implied, not explicit.

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/5.0
Disambiguation5/5

Each tool targets a clearly distinct operation: catalog discovery (list/search), metadata retrieval, download URL retrieval, schema retrieval, and checksum verification. The only potential overlap is between metadata and download URL, but the descriptions make their boundaries explicit.

Naming Consistency5/5

Tool names consistently follow a snake_case verb_noun pattern: get_*, list_datasets, search_datasets, verify_checksum. The naming style is uniform and every verb accurately reflects the action.

Tool Count5/5

Six tools is a well-scoped set for a public dataset metadata and access server. Each tool covers a necessary step in the discovery-to-download workflow without redundancy.

Completeness5/5

The workflow is complete for the stated domain: discover datasets, inspect metadata and schema, obtain download URLs, and verify checksums. Direct dataset bytes are intentionally not proxied, so this is not a gap given the server's defined purpose.