Skip to main content
Glama

DaedalMap Wildfire Events

Get Pack

get_pack
Read-only

Free discovery. Returns detailed metadata, coverage, freshness, preferred canonical tool guidance, and first-query examples for one pack. Call this before querying a new pack so you can see time shape, coverage limits, and the paste-ready first query.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pack_idYesPack identifier from get_catalog. Newly catalog-admitted packs require no MCP schema change.

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, lowering the bar. The description adds genuine context beyond that: 'Free discovery' signals no cost, and it discloses what the agent will gain (time shape, coverage limits, paste-ready first query), which frames it as a safe prerequisite step. 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 sentences with no waste. The scoping phrase 'Free discovery' is front-loaded, followed by the return payload, then the actionable prerequisite guidance. Every clause earns its place and the structure aids a quick scan.

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?

Although there is no output schema, the description compensates by enumerating the return contents (metadata, coverage, freshness, canonical tool guidance, first-query examples). For a single-parameter, read-only discovery tool this is complete — an agent knows exactly what it will receive and when to call it.

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% — pack_id is fully documented ('Pack identifier from get_catalog'). Per the rubric, this warrants a baseline 3. The description references 'one pack' consistent with the single parameter but adds no syntax or format detail beyond the schema, which is acceptable given full coverage.

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: 'Returns detailed metadata, coverage, freshness, preferred canonical tool guidance, and first-query examples for one pack.' It clearly distinguishes itself from siblings — get_catalog enumerates packs, query_dataset runs queries, while get_pack fetches metadata for a single pack, reinforced by 'preferred canonical tool guidance' which no sibling mentions.

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?

It gives explicit timing guidance: 'Call this before querying a new pack so you can see time shape, coverage limits, and the paste-ready first query.' This tells the agent when to invoke it in a workflow. It lacks an explicit exclusion naming a specific alternative, but the prerequisite framing is clear enough to route correctly.

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
Disambiguation4/5

Tools are mostly distinct: discovery (get_catalog, get_pack), query (query_dataset), and linked-disaster helpers (get_disaster_link_chain, get_disaster_links_for_event, search_disaster_links) are clearly separated. However, get_disaster_link_chain and get_disaster_links_for_event both expand an event id into related events/links, which could cause confusion even though descriptions explain the difference.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern with snake_case: get_catalog, get_pack, get_disaster_link_chain, query_dataset, search_disaster_links. The naming is uniform and predictable.

Tool Count4/5

Seven tools is within the typical well-scoped range. The mix of discovery, query, and helper tools covers the server's facade purpose, though none are strictly wildfire-specific. The count feels reasonable, not excessive or sparse.

Completeness4/5

The server provides discovery (catalog, pack metadata), an arbitrary query interface, and linked-disaster helpers, covering the main access patterns. Minor gaps exist, such as no direct 'list events' tool separate from query, but query_dataset likely handles retrieval. Overall, the surface is coherent for a data-access server.