Skip to main content
Glama

search_events

Search for disaster events with various filters. Returns a list of events matching the criteria, ordered by date descending.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of results to return (1-100, default 20)
toDateNoEnd date for search range (ISO 8601 format)
countryNoFilter by country name or ISO code
fromDateNoStart date for search range (ISO 8601 format)
eventnameNoFilter by eventame, tipically for the TC, cyclone name
alertLevelNoAlert level filter: 'green', 'orange', 'red', or combination like 'orange;red'
eventTypesNoComma-separated event types to include (e.g., 'EQ,TC,FL'). Leave empty for all types.
minSeverityNoMinimum severity value to filter

TDQS

B3.3/5.0
Behavior3/5

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

No annotations are provided, so the description bears the full burden. It does disclose the ordering behavior and that it returns a list, but it omits how filters combine (e.g., AND/OR), pagination behavior, and whether any filters are required, which are important behavioral traits for a search tool.

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 sentences, immediately states the verb and resource. No filler or redundant restatement of schema fields. The word count is appropriate for the tool's complexity.

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?

While the schema thoroughly covers parameters, the description lacks information about response format, filter combination logic, and default behavior (e.g., what happens with no filters). With no output schema and no annotations, the description is too sparse to fully prepare an agent to invoke the tool effectively, but it does convey the core search and ordering semantics.

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 input schema provides 100% coverage, with descriptions for all 8 parameters (limit, dates, country, eventname, alertLevel, eventTypes, minSeverity). The description adds no additional parameter semantics beyond listing 'various filters', so it doesn't exceed the schema baseline.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses the specific verb 'Search' and states the resource ('disaster events') and output behavior ('returns a list of events matching the criteria, ordered by date descending'). It does not explicitly differentiate from sibling tools like get_events_by_country or get_recent_alerts, but the emphasis on arbitrary filters makes its scope clear.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no guidance about when to prefer this tool over alternatives such as get_recent_alerts or get_events_by_country. The description only says 'various filters' without explaining trade-offs, so the agent gets no decision support.

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

A3.8/5.0
Disambiguation4/5

Most tools are clearly distinct: get_event_data retrieves a single event, search_events lists events with filters, and reference tools like get_alert_level_info and get_event_types are obviously different. However, get_active_disasters, get_recent_alerts, and search_events have some overlap in returning lists of events, though their descriptions clarify the specific time-based or filter-based focus.

Naming Consistency4/5

Seven of eight tools follow a consistent get_<noun> pattern (get_active_disasters, get_event_data, etc.), making them predictable. The single deviation is search_events, which omits the 'get_' prefix but still uses a clear verb-noun structure.

Tool Count5/5

With 8 tools, the set is well-scoped for a disaster information API. Each tool serves a distinct query purpose—reference data, single-event details, list queries, and statistics—without unnecessary redundancy or bloat.

Completeness5/5

The tool surface covers the core read-only operations expected for this domain: listing active/recent events, searching with filters, fetching details, retrieving by country, and accessing reference data (alert levels, event types) plus statistics. There are no obvious dead ends or missing operations for a query-focused API.

Resources