Skip to main content
Glama

Pointer Minerals — Texas Oil & Gas Data

download_dataset

Get the bulk-download URL and DOI for a named dataset.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes

TDQS

A3.6/5.0
Behavior3/5

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

No annotations are provided, so the description carries the burden. It clearly states the tool returns a URL and DOI, implying a read-only operation, but does not disclose whether the URL requires authentication, rate limits, or what happens if the dataset name is invalid. The description is honest but lacks detail.

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 a single sentence that is direct and free of unnecessary words. It front-loads the action and output clearly.

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?

For a tool with one parameter and no output schema, the description sufficiently explains the primary return value (URL and DOI). However, it does not mention related tools like list_datasets, which would help complete the usage context. Minor gap but overall adequate.

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?

The schema has a single 'name' parameter with no description, and the description adds that it is the name of a dataset. This provides some meaning beyond the schema, but it does not clarify the source of valid names or format expectations. With 0% schema coverage, more explicit parameter guidance would be beneficial.

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 a specific verb ('Get') and the exact resource ('bulk-download URL and DOI for a named dataset'). It distinguishes itself from sibling tools like list_datasets (which lists datasets) and get_county_production (which gets production data) by specifying the exact output.

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

Usage Guidelines2/5

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

The description does not provide any guidance on when to use this tool versus alternatives. It does not mention that the dataset name should come from list_datasets, nor any exclusions or prerequisites. The agent must infer usage from context.

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

A3.6/5.0
Disambiguation4/5

Each tool targets a distinct resource/action: datasets (list/download), counties (list), production (get by county), operators (exact lookup vs search). While get_operator and search_operators both deal with operators, the former is for exact/fuzzy single lookup while the latter is ranked FTS, making them distinguishable.

Naming Consistency4/5

Tools follow a consistent verb_noun pattern (download_, get_, list_, search_) with clear prefixes. Although get_ and list_ both indicate retrieval, they apply to different resources and the verbs match the operation type (specific retrieval vs enumeration).

Tool Count5/5

Six tools is well-scoped for a domain-specific data server, covering datasets, counties, production, and operators without redundancy.

Completeness5/5

The surface covers dataset discovery/download, county listing, production retrieval, and operator lookup/search—comprehensive for a data access API. No obvious missing CRUD operations since this is a read-only data source.

Resources