Skip to main content
Glama

DaedalMap Wildfire Events

Get Disaster Link Chain

get_disaster_link_chain
Read-only

Free linked-disaster helper. Expands one exact disaster event id into a bounded related-event chain. Use this only when you already have an exact event id from a supported pack such as earthquakes, tsunamis, volcanoes, or wildfires.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
depthNoMaximum link-chain depth to traverse. Default 1.
pack_idNoOptional pack id hint when the event id is ambiguous. Supported exact-event link packs are earthquakes, tsunamis, volcanoes, and wildfires.
event_idYesExact disaster event id from a supported pack row, such as 'NOAA-SIG-2' or 'USA-CA-FIRE-215'.
request_idNoOptional caller-supplied request id for tracing.
cross_type_onlyNoWhen true, only return cross-hazard links. Default true.

TDQS

A3.8/5.0
Behavior3/5

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

Annotations include readOnlyHint=true, so the read-only nature is already declared. The description adds context about requiring an exact event id and producing a bounded chain, which is useful. However, it does not describe the return format, what 'bounded' means beyond the depth parameter, or any edge-case behavior. With the annotation covering safety, the description provides some additional value but not rich behavioral context.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is brief and front-loads the core action: 'Expands one exact disaster event id into a bounded related-event chain.' It includes a usage guideline in the same breath. The opening 'Free linked-disaster helper' is slightly vague and could confuse, but it does not distract significantly. Overall, it is concise and well-structured, though not as tight as a pure two-sentence example.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/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 does not need to explain return values, but it also does not hint at the structure of the 'chain' (e.g., nested events or flat list). The schema and annotations are thorough for parameters and safety, but the description is missing guidance on what the response looks like or any edge cases (ambiguous ids, depth behavior). This leaves some gaps for a tool that returns a possibly complex chain.

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%, with each parameter clearly described, including examples and defaults (e.g., event_id mentions 'NOAA-SIG-2', cross_type_only explains default true). The tool description adds little beyond what the schema already provides, mentioning 'supported pack' which is also in pack_id. Baseline 3 applies due to high schema coverage; the description does not meaningfully add parameter semantics.

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 function: 'Expands one exact disaster event id into a bounded related-event chain.' It specifies the resource (exact disaster event id), the action (expands), and the output (bounded related-event chain). It also distinguishes from siblings by emphasizing it requires an exact id, unlike search_disaster_links, and by focusing on chain expansion rather than direct links.

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 provides a clear usage condition: 'Use this only when you already have an exact event id from a supported pack...' This tells the agent when to use the tool. However, it does not explicitly name alternative tools for cases where an exact id is lacking, nor does it state when not to use it in relation to siblings like search_disaster_links or get_disaster_links_for_event.

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.