Skip to main content
Glama

Server Details

Real-time earthquake events from the US Geological Survey

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

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.4/5 across 3 of 3 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: get_earthquake_detail retrieves specific event details by ID, get_earthquakes_near searches by geographic location with radius parameters, and get_recent_earthquakes fetches global recent events sorted by time. There is no overlap or ambiguity between these three functions.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern with 'get_' prefix and descriptive suffixes (detail, earthquakes_near, recent_earthquakes). The naming is uniform, predictable, and clearly indicates the action and target resource.

Tool Count4/5

Three tools are reasonable for a focused earthquake data server, covering key use cases: detail lookup, location-based search, and global monitoring. However, it feels slightly thin as it lacks tools for broader queries (e.g., by date range or magnitude range without location) or additional data like tsunami alerts, which might be expected in this domain.

Completeness4/5

The tool set covers essential earthquake data retrieval: specific event details, local searches, and global recent events. Minor gaps exist, such as no tools for historical data beyond recent days, filtering by region without coordinates, or accessing related data like tectonic plate information, but agents can work around these with the provided tools.

Available Tools

3 tools
get_earthquake_detailAInspect

Get full details of a specific earthquake event by its USGS event ID.

Returns comprehensive information including magnitude, location, depth,
felt reports, tsunami status, and tectonic summary when available.

Args:
    event_id: The USGS event ID (e.g. 'us7000m1xh'). Get IDs from search results.
ParametersJSON Schema
NameRequiredDescriptionDefault
event_idYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes
Behavior4/5

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

With no annotations provided, the description carries the full burden. It discloses the return fields (magnitude, location, depth, felt reports, tsunami status, tectonic summary) and notes 'when available,' adding conditional behavior. However, it does not mention error handling for invalid IDs or net behavior, but for a simple read tool this is adequate.

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 brief but complete: a clear purpose sentence, a list of return fields, and a concise parameter explanation. It is front-loaded and every sentence adds value, with no unnecessary filler.

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?

For a single-parameter tool with an output schema present, the description covers the necessary context: what the tool does, what it returns (including optional fields), and how to use the parameter. The presence of an output schema means return structure is already defined, so the description is sufficiently complete.

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

Parameters5/5

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

The schema provides only a title 'Event Id' with 0% coverage, so the description is essential. It defines the parameter as a USGS event ID, gives a concrete example ('us7000m1xh'), and explains how to obtain IDs ('from search results'). This fully compensates for the schema's lack of description.

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 explicitly states 'Get full details of a specific earthquake event by its USGS event ID.' This clearly identifies the action (get details), the resource (specific earthquake event), and the identifier (USGS event ID). It is well-distinguished from siblings like get_recent_earthquakes (lists events) and get_earthquakes_near (geo-filtered list).

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 clear context: this tool is for a specific event known by an ID, and it instructs 'Get IDs from search results.' This implies usage after a search/list call, but it does not explicitly name alternatives or state when not to use it. Sibling tool names are visible in context, but the description itself does not draw explicit comparisons.

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

get_earthquakes_nearAInspect

Get earthquakes near a specific geographic location.

Searches for earthquakes within a radius of the given coordinates.
Useful for assessing local seismic risk or investigating felt reports.

Args:
    latitude: Latitude of the center point (e.g. 37.7749 for San Francisco).
    longitude: Longitude of the center point (e.g. -122.4194 for San Francisco).
    radius_km: Search radius in kilometers (default 100, max 20001).
    min_magnitude: Minimum magnitude to include (default 1.0).
    days: Number of days to look back (default 30, max 365).
ParametersJSON Schema
NameRequiredDescriptionDefault
daysNo
latitudeYes
longitudeYes
radius_kmNo
min_magnitudeNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes
Behavior3/5

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

No annotations are provided, so the description carries the full burden. It discloses defaults and maximum values for radius_km and days, which is helpful. However, it omits behavioral details such as how results are ordered, any result limits, or the nature of the returned data (though output schema may cover return structure). It is not misleading but lacks depth, scoring a 3.

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 well-structured: two clear sentences of purpose, then a concise Args block. Every sentence earns its place, though the Args section could be more compact. It is not bloated and remains readable, so a 4 rather than a 5 for slight verbosity.

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 5 parameters, no annotations, and an output schema present, the description covers the parameters and use cases thoroughly. It does not describe return values, but the output schema handles that. It could mention result ordering or edge cases like 'no earthquakes found,' but overall it is complete enough for correct invocation, earning a 4.

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

Parameters5/5

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

The description includes an Args section that explains every parameter: latitude/longitude with examples, radius_km with default and max, min_magnitude with default, and days with default and max. This adds substantial meaning beyond the input schema, which has no descriptions at all. The schema coverage signal is 0%, meaning the description fully compensates, so a 5 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 'Get earthquakes near a specific geographic location' and 'Searches for earthquakes within a radius of the given coordinates.' This distinguishes it from siblings like get_earthquake_detail (specific event lookup) and get_recent_earthquakes (recent list, not location-scoped). The verb+resource+scope are specific and unambiguous.

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 use cases: 'Useful for assessing local seismic risk or investigating felt reports.' This tells when to use the tool. However, it does not explicitly mention when not to use it or point to alternatives among siblings, so it misses exclusions. Clear context but no exclusions warrants a 4.

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

get_recent_earthquakesAInspect

Get recent earthquakes worldwide above a minimum magnitude.

Returns earthquake events from the USGS catalog sorted by time (newest first).
Useful for monitoring seismic activity globally.

Args:
    min_magnitude: Minimum magnitude to include (default 2.5). Use 4.5+ for significant quakes only.
    days: Number of days to look back (default 7, max 30).
    limit: Maximum number of earthquakes to return (default 50, max 500).
ParametersJSON Schema
NameRequiredDescriptionDefault
daysNo
limitNo
min_magnitudeNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes
Behavior3/5

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

No annotations are provided, so the description carries the full burden. It discloses that results come from the USGS catalog and are sorted by time (newest first), which is useful behavioral context. However, it does not cover potential behaviors like delay in catalog updates, error handling, or whether results are limited by USGS API specifics. This is adequate but not rich.

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 front-loaded with the primary purpose, followed by a clear statement of the data source and ordering, then a brief use case, and finally structured parameter details. Every sentence contributes value, and the length 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.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple with 3 optional parameters and an output schema exists, so return values don't need explanation. The description covers purpose, behavior, parameter semantics, and a use case. It does not discuss relationship to sibling tools or potential edge cases, but for a straightforward read-only API, this is nearly complete. Missing explicit sibling differentiation slightly reduces completeness.

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

Parameters5/5

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

The schema has 0% description coverage, but the Args section fully explains all three parameters: min_magnitude (with default and guidance for 'significant quakes'), days (with default and max), and limit (with default and max). This adds meaning beyond the schema's types and defaults, fully compensating for the lack of inline schema descriptions.

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 opens with a specific verb+resource combination: 'Get recent earthquakes worldwide above a minimum magnitude.' It clearly distinguishes this from siblings by emphasizing 'worldwide' and 'recent', and names the USGS catalog as the data source. This is a precise and unambiguous purpose.

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?

It states a clear use case: 'Useful for monitoring seismic activity globally.' This provides context, but it does not explicitly mention when to use sibling tools like get_earthquake_detail or get_earthquakes_near, nor does it exclude alternatives. The absence of exclusions keeps it at 4 rather than 5.

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

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources