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_detailInspect

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
get_earthquakes_nearInspect

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
get_recent_earthquakesInspect

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

Discussions

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

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources