Skip to main content
Glama

DaedalMap Wildfire Events

Server Details

Wildfire events and aggregates across global, U.S., and Canada sources. Paid via x402 USDC.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
xyver/daedal-map
GitHub Stars
2
Server Listing
daedal-map

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.1/5 across 7 of 7 tools scored.

Server CoherenceA
Disambiguation2/5

The tools get_disaster_link_chain and get_disaster_links_for_event both accept an exact event id and return related-disaster information, making them nearly indistinguishable in purpose. The other tools are distinct, but this critical pair creates significant ambiguity.

Naming Consistency4/5

The tool names consistently follow a snake_case verb_noun pattern (get_catalog, get_pack, query_dataset, search_disaster_links). While the verbs vary (get, query, search), the naming is predictable and descriptive, with no camelCase or erratic conventions.

Tool Count5/5

With 7 tools, the server is well within the ideal 3-15 range. Each tool serves a purposeful role: catalog discovery, pack metadata, generic querying, link navigation, and tool guidance, so none feel redundant.

Completeness4/5

The tool surface covers the typical read-only data access lifecycle: discovering packs, getting metadata, querying datasets, and navigating linked disasters. A dedicated wildfire-specific query is absent but query_dataset supports the wildfires pack, and the link tools add value. No write operations are needed for this server's scope.

Available Tools

7 tools
get_catalogGet CatalogA
Read-only
Inspect

Free discovery. Returns the list of live agent-ready data packs available on DaedalMap.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior3/5

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

The readOnlyHint annotation already covers safety, and the description adds minimal context (e.g., 'live' and 'agent-ready'). It does not detail output structure, pagination, or potential side effects, which is a gap given the absence of an output schema. However, for a zero-parameter read-only tool, the description is not misleading.

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: 'Free discovery.' and 'Returns the list of live agent-ready data packs available on DaedalMap.' It is front-loaded with a clear phrase, every word earns its place, and it avoids redundancy.

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?

Given the tool's simplicity (no parameters, no output schema, read-only annotation), the description adequately covers the essential return value and context. It tells the agent exactly what to expect: a list of live, agent-ready data packs. No further details are necessary for this kind of discovery tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters, so the baseline for parameter semantics is 4. No parameter details are needed, and the description correctly focuses on the return value. There is nothing to complain about here.

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 purpose with a specific verb ('Returns') and resource ('list of live agent-ready data packs'). It distinguishes itself from sibling tools focused on disaster links and data queries, making its function obvious.

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 phrase 'Free discovery' suggests a low-cost way to explore available data packs, but it does not explicitly mention when to use this tool over alternatives like get_pack or query_dataset. It provides clear context without exclusions, fitting the 'clear context, no exclusions' baseline.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_packGet PackA
Read-only
Inspect

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
pack_idYesPack identifier such as 'currency', 'earthquakes', 'floods', 'hurricanes', 'tornadoes', 'tsunamis', 'un_sdg', 'volcanoes', 'world_factbook', or 'worldpop'.
Behavior4/5

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

With readOnlyHint=true already indicating a safe read operation, the description adds value by explaining the output nature: 'metadata, coverage, freshness, preferred canonical tool guidance, and first-query examples.' This clarifies that the tool is a discovery aid, not a data query, which is meaningful behavioral context beyond the annotation.

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, front-loads the key return values, and includes an actionable usage directive. Every word earns its place without redundancy.

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 1-parameter read-only tool with no output schema, the description sufficiently covers purpose, usage timing, and expected output contents. It could mention return format or error conditions, but given the low complexity, this is a minor gap.

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?

The schema already provides 100% coverage with a detailed description of pack_id and examples. The description does not add any parameter-specific meaning beyond what the schema provides, so the baseline of 3 is appropriate.

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 returns detailed metadata, coverage, freshness, canonical tool guidance, and first-query examples for one pack. This is specific and distinguishes it from siblings like get_catalog (which likely lists packs) and query_dataset (which queries actual data).

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 instructs to 'Call this before querying a new pack' to see time shape, coverage limits, and a paste-ready first query. This provides clear when-to-use context, though it does not explicitly name alternatives or excluded cases, so it falls short of a 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_tool_helpGet Tool HelpA
Read-only
Inspect

Free blind-caller guidance for one tool visible on this MCP facade. Returns when to use it, what it refuses, a working example, effective access limits, important outputs, provenance fields, recommended next calls, and the shared natural-language-to-strict-JSON interaction contract. Use tools/list to discover names, then call this before an unfamiliar tool.

ParametersJSON Schema
NameRequiredDescriptionDefault
tool_nameYesExact tool name from tools/list.
Behavior4/5

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

Annotations already declare readOnlyHint=true, so the agent knows the tool is safe and non-mutating. The description adds value by disclosing what the tool returns: 'when to use it, what it refuses, a working example, effective access limits, important outputs, provenance fields, recommended next calls, and the shared natural-language-to-strict-JSON interaction contract.' This gives a detailed picture of the tool's output behavior without contradicting the annotations. It doesn't mention potential errors (e.g., unknown tool name), but that's a minor gap.

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 and front-loaded with purpose. The second sentence lists important output categories – a bit long but every item adds value. The final sentence gives a clear call-to-action. No fluff, but the list is dense. It earns its length and does not waste the reader's attention.

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?

With no output schema, the description must explain return values, and it does by enumerating the content types. It also covers the discovery workflow and when to use the tool. It doesn't describe error behavior for invalid tool names, but given the low parameter count and simple purpose, the description is sufficiently complete for an agent to invoke the tool effectively.

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% – the only parameter 'tool_name' is described as 'Exact tool name from tools/list.' The description reinforces this by saying 'Use tools/list to discover names,' providing a helpful hint about the parameter's source. However, it adds no format, validation, or default information beyond what the schema already provides. The baseline of 3 applies because the schema fully documents the parameter.

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: 'Free blind-caller guidance for one tool visible on this MCP facade.' It uses a specific verb ('returns') and identifies the resource ('one tool'). It also lists concrete deliverables, distinguishing it from sibling tools that retrieve data (e.g., get_catalog, query_dataset). The purpose is unambiguous and front-loaded.

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 workflow: 'Use tools/list to discover names, then call this before an unfamiliar tool.' This tells the agent when to use the tool and gives a clear prerequisite step. It does not explicitly state when not to use it, but the guidance is strong enough for an AI agent to select it appropriately. The mention of 'before an unfamiliar tool' signals a clear use case.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

query_datasetQuery DatasetA
Read-only
Inspect

Generic structured query for direct source_id or pack_id access using the same contract as POST /api/v1/query/dataset. Free packs: currency, distributed_manufacturing, floods, nri, owid, un_sdg, un_wpp, volcanoes, world_bank_wdi. Paid packs: earthquakes, hurricanes, tornadoes, tsunamis, wildfires, world_factbook, worldpop (x402 Base USDC).

ParametersJSON Schema
NameRequiredDescriptionDefault
sortNoOptional sort instructions for row-returning queries.
limitNoMaximum number of rows to return for the requested source or pack.
outputNoOptional output controls such as response format hints.
filtersNoStructured filters including time, region_ids, and compare clauses.
metricsNoMetric ids to return. Use event_count for aggregate counts when supported.
pack_idNoPack identifier such as 'currency', 'earthquakes', 'floods', 'hurricanes', 'tornadoes', 'tsunamis', 'un_sdg', 'volcanoes', 'world_factbook', or 'worldpop'.
source_idNoConcrete source id such as 'earthquakes_events', 'volcanoes_events', 'hurricanes_events', or 'un_sdg/01'.
request_idNoOptional caller-supplied request id for tracing and idempotency.
Behavior4/5

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

Annotations declare readOnlyHint=true, so the read-only nature is already known. The description adds valuable context beyond annotations: the distinction between free and paid packs with a pricing mention (x402 Base USDC) alerts the agent to potential financial implications. It doesn't discuss rate limits or pagination, but the annotations cover the safety profile, so a 4 is justified.

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 concise and front-loaded with the core purpose. The pack list is necessary for guidance and is formatted as a comma-separated list that is easy to scan. No filler or redundant content; every sentence earns its place.

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?

For a tool with 8 parameters and no output schema, the description is minimal. It references the API contract as a substitute for explaining return values, which is somewhat helpful but not self-contained. It doesn't explain how to construct effective queries (e.g., combining filters and metrics) beyond the schema. Given the complexity, a more complete description would mention response format or invoke the contract explicitly. Thus, 3 is appropriate.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3. The description adds semantic value by listing valid pack_id examples and categorizing them as free or paid, which is not present in the schema. This helps the agent choose correct parameter values. However, it adds no extra detail on sort, filters, or metrics beyond what the schema already provides, so it doesn't exceed a 4.

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: 'Generic structured query for direct source_id or pack_id access'. This is a specific verb+resource combination that distinguishes it from sibling tools like get_catalog or get_pack, which likely return metadata rather than data. The mention of free vs paid packs further clarifies scope.

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 implies usage when you have a specific source_id or pack_id and need structured data access, contrasting with catalog or metadata tools. It does not explicitly state when not to use it or name alternatives, but the 'direct source_id or pack_id access' phrasing provides clear situational guidance. The contract reference hints at API-level usage.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    A
    quality
    B
    maintenance
    Enables MCP hosts to access verifiable, decision-grade signals across five domains (hydrology, air quality, agriculture, power grid, shipping, regulatory filing) with pay-per-call in USDC via x402.
    10
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    Real-time perp market-data for AI trading agents — funding rates, funding-arb signals, open interest, volume, orderbook depth/slippage and oracle families across 25 venues, plus HIP-3 RWA coverage (tokenized stocks, metals, oil) that mainstream aggregators lack. x402-native pay-per-call (USDC on Base): one free funding screener tool + 11 paid tools with auto-pay.
    12
    19
    2
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    MCP server for pay-per-call DeFi and crypto data via x402 micropayments on Base. 8 endpoints: token prices, TVL, funding rates, token security, gas tracker, whale monitoring, wallet profiling, and yield scanning.
    8
    46
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.