Skip to main content
Glama

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.9/5.0
Behavior3/5

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

Annotations declare readOnlyHint=true, which already establishes this is a safe read operation. The description adds the adjective 'bounded' to clarify the chain is limited in depth, and 'Free' might hint at no authentication or cost, but it is ambiguous. There is no contradiction with annotations, and the description adds value by noting the exact-id requirement and boundedness, but it does not disclose much more about behavior (e.g., response format, error handling).

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 two sentences and front-loaded with the key action. Every phrase earns its place: 'Free' is a minor label, 'bounded' clarifies behavior, and the usage condition is concise. No unnecessary words.

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?

Given that the schema is rich with parameter details and the tool is relatively simple, the description provides enough to understand its core purpose and usage context. However, with no output schema, it does not explain what the returned chain looks like or what 'bounded' means precisely (e.g., max depth is in schema but not described here). It is adequate but has gaps for an agent unfamiliar with the tool family.

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%, so all 5 parameters have detailed descriptions. The tool description adds minimal semantic value beyond the schema, only echoing the 'exact event id' and 'supported pack' concepts already present in the schema. Baseline 3 is appropriate because the schema carries the parameter meaning.

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: expanding an exact disaster event id into a bounded related-event chain. It uses a specific verb ('expands') and specifies the resource (disaster event id), and it distinguishes itself from siblings by focusing on chain expansion rather than simple lookup or search.

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 explicitly states when to use the tool: 'Use this only when you already have an exact event id from a supported pack.' This provides a clear condition and exclusion. It does not name alternative sibling tools explicitly, but the conditional phrasing implies there are other tools for cases where you do not have an exact id. This is good guidance, though not exhaustive.

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.1/5.0
Disambiguation3/5

get_disaster_link_chain and get_disaster_links_for_event both require an exact event ID and return related-disaster information, with only subtle differences in output (chain vs. links). The discovery tools are distinct, but these two overlap enough to cause an agent to pick the wrong one.

Naming Consistency4/5

Tool names mostly follow a consistent get_<object> snake_case pattern, with clear verbs and objects. The single deviation is search_disaster_links, but it still fits the overall naming style and is predictable.

Tool Count5/5

7 tools is well-scoped for a specialized data server, covering discovery (catalog, pack, tool help), core querying (tsunami_events), and linked-disaster navigation. Each tool earns a place without feeling excessive.

Completeness4/5

The server covers its domain well: tool discovery, pack metadata, help, tsunami event queries, and disaster-link exploration. Minor gaps exist (e.g., no direct tool for other pack data, no event count by ID), but agents can work around these using get_tsunami_events and filters.