Skip to main content
Glama

DaedalMap Volcanic Activity

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?

With readOnlyHint: true provided in annotations, the description does not need to restate the read-only nature. It adds useful behavioral context by describing the chain as 'bounded' and requiring an exact event id, which implies deterministic expansion. It does not describe return format or pagination, but this is somewhat covered by annotations and the bounded nature. No contradictions found.

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 three sentences, but the first sentence 'Free linked-disaster helper' is vague and adds little value. The remaining sentences are efficient and clearly state the primary purpose and usage condition. Slight waste in the opening phrase prevents a 5.

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?

The description covers the core behavior and usage condition, and with readOnlyHint and full parameter schema, the tool is well-specified. No output schema exists, but the description hints at the chain outcome. It is complete for a simple read-only helper, though mentioning the depth limit (already in schema) could add clarity.

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 the baseline is 3. The description reinforces that event_id must be exact and mentions supported packs, aligning with pack_id. It does not add significant new semantics beyond the schema, but the context of 'bounded chain' implicitly relates to depth. A 3 is appropriate since the schema carries the load.

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 action: 'Expands one exact disaster event id into a bounded related-event chain.' It specifies the resource (exact disaster event id) and scope (bounded chain). It also distinguishes from siblings by noting the requirement for an exact event id and listing supported packs, which differentiates it from search-based tools like search_disaster_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 explicit usage guidance: 'Use this only when you already have an exact event id from a supported pack,' which sets a clear precondition and names the supported packs. However, it does not explicitly name alternative tools or say when not to use it, so it does not fully address the 'vs alternatives' aspect required for a 5.

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

Most tools are clearly distinct, but get_disaster_link_chain and get_disaster_links_for_event both operate on an exact event id and return related events, which could cause confusion. Descriptions clarify chain vs. links, but the boundary is subtle.

Naming Consistency5/5

All tools follow a consistent get_<resource> or search_<resource> pattern, using snake_case throughout. The naming is predictable and makes it easy to infer function from the tool name.

Tool Count5/5

With 8 tools, the server covers discovery, query, live data, and cross-disaster linking without being bloated. Each tool serves a clear purpose, making the count appropriate for a specialized volcanic activity data server.

Completeness4/5

The surface covers core volcanic activity queries, live events, pack discovery, and related-disaster exploration. Minor gaps exist such as no direct tool for fetching a single event by ID, but the existing tools can generally work around that.