Skip to main content
Glama

DaedalMap Wildfire Events

Get Disaster Links For Event

get_disaster_links_for_event
Read-only

Free linked-disaster helper. Resolves one exact disaster event id into its published related-disaster links. 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
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

A4/5.0
Behavior3/5

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

The readOnlyHint annotation already communicates the read-only safety profile. The description adds a little context (exact event id, published links) but does not disclose other behavioral traits like auth, rate limits, or output format. 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 tight sentences: first sentence states purpose, second gives usage restriction. No filler, no repetition of schema details.

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 simple read-only resolver with 100% schema coverage, the description is adequate: it names the input condition and supported packs. It could more explicitly distinguish from get_disaster_link_chain or describe return shape, but these are not essential gaps.

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 four parameters are already documented. The description reinforces that event_id must be exact and from a supported pack, but this largely repeats schema text rather than adding new 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 a specific verb ('resolves') and resource ('one exact disaster event id into its published related-disaster links'), with a scope boundary ('supported pack such as earthquakes, tsunamis, volcanoes, or wildfires'). This distinguishes it from broader search/list sibling 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 gives an explicit usage condition: 'Use this only when you already have an exact event id from a supported pack.' This is clear context and a restriction, though it does not explicitly name alternative tools for other cases.

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.