earthquake-mcp-server
Search USGS and EMSC seismic data for real-time feeds, event queries, and earthquake counts via MCP.
README
<div align="center"> <h1>@cyanheads/earthquake-mcp-server</h1> <p><b>Search USGS and EMSC seismic data — real-time feeds, event queries, and earthquake counts via MCP. STDIO or Streamable HTTP.</b> <div>4 Tools • 2 Resources</div> </p> </div>
<div align="center">
</div>
<div align="center">
</div>
<div align="center">
Public Hosted Server: https://earthquake.caseyjhand.com/mcp
</div>
Tools
4 tools for querying global earthquake data from USGS and EMSC:
| Tool | Description |
|---|---|
earthquake_get_feed |
Fetch a USGS pre-computed real-time earthquake feed by magnitude tier and time window |
earthquake_search |
Search earthquakes by time range, magnitude, depth, location radius, PAGER alert level, or felt reports |
earthquake_count |
Count earthquakes matching filters without fetching full records |
earthquake_get_event |
Fetch complete detail for a specific earthquake by USGS event ID |
earthquake_get_feed
Fetch a USGS pre-computed real-time earthquake feed by magnitude tier and time window.
- CDN-cached by USGS — faster and more available than the FDSN query API
- Five magnitude tiers:
all(microseisms),1.0,2.5,4.5, andsignificant(USGS-curated by magnitude, felt reports, and PAGER impact) - Four time windows:
hour,day,week,month - Returns event list with counts and the source feed URL
- Paged with an opaque
cursor:limitbounds a page (default 100, max 1000),totalCountreports the whole feed, andnextCursorretrieves the rest — the broad tiers run past 10,000 events formonth - The cursor is opaque because these feeds have no upstream paging parameter and USGS regenerates them about once a minute; a numeric offset across two calls would skip or repeat events
- Best for real-time "what's happening now" queries; use
earthquake_searchfor historical or filtered queries
earthquake_search
Search earthquakes by time range, magnitude, depth, location radius, PAGER alert level, or felt reports.
- Dual-source: USGS (global, richer metadata) or EMSC (an independent global catalog from the European-Mediterranean Seismological Centre, for cross-verification anywhere)
- Full FDSN ComCat query API parameters: time range, magnitude, depth, location radius
- USGS-specific filters: PAGER alert level (
green/yellow/orange/red), DYFI felt reports count, significance score, event type - Every event carries its upstream
event_type— USGS spells it out (earthquake,quarry blast,explosion,ice quake), EMSC publishes a code (keknown earthquake,ueunknown event) — and theevent_typefilter narrows to one of them on USGS - Location-based queries: provide
latitude,longitude, andradius_kmtogether - Sort by time (newest first) or magnitude (largest first), ascending or descending
- One call returns at most 20,000 events; page beyond that with
offset, forwarded straight to the upstream FDSNoffsetparameter on both sources offsetcounts from 1, matching both upstream APIs — a capped result carriestotalCountand thenextOffsetto pass on the following call- Use
earthquake_countfirst to gauge result size - USGS-specific filters are not supported by EMSC — when
source=emscthey are dropped and named inignoredFilters, so an unconstrained result set is never mistaken for a filtered one
earthquake_count
Count earthquakes matching filters without fetching full records.
- Lightweight alternative to
earthquake_searchfor statistical queries ("how many M5+ events in 2025?") - Same filter surface as
earthquake_search: time, magnitude, depth, location radius, PAGER, DYFI, significance, event type - A radius over a mining region counts quarry blasts alongside earthquakes — pass
event_type="earthquake"on USGS to exclude them - Returns
exceeds_limitflag when count exceeds 20,000 — signals a full search needs paging - Echoes the effective query back as
queryEcho, including the resolved time window — omittingstart_timecounts only the last 30 days - USGS returns the
max_allowedcap (20,000); EMSC count endpoint does not expose this field (max_allowedwill be null) - USGS-specific filters are dropped and named in
ignoredFilterswhensource=emsc, the same as onearthquake_search
earthquake_get_event
Fetch complete detail for a specific earthquake by USGS event ID.
- Returns the normalized event a search result already carries, plus
detail— a projection of the analysis products only the single-event response holds detailgroups: PAGER alert and report link, ShakeMap peak MMI/PGA/PGV and intensity map, DYFI response count and max CDI, moment-tensor scalar moment and nodal planes, landslide and liquefaction alerts, origin quality (azimuthal gap, station count, location and depth uncertainty), finite-fault rupture length and width- A group is omitted when USGS produced no such product — a small automatic event usually has none, a large reviewed one has most of them
- Event IDs appear in the
idfield ofearthquake_get_feedandearthquake_searchresults (e.g.us6000sznj,hv74966427) - USGS-only — EMSC events have no per-event detail endpoint
Resources
| Type | URI pattern | Description |
|---|---|---|
| Resource | earthquake://feed/{magnitude_tier}/{time_window} |
USGS real-time earthquake feed as injectable context — returns the whole feed, so use the earthquake_get_feed tool for the broad tiers |
| Resource | earthquake://event/{event_id} |
Full USGS earthquake event detail by ID as injectable context, including the same detail product projection as earthquake_get_event |
Features
Built on @cyanheads/mcp-ts-core:
- Declarative tool definitions — single file per tool, framework handles registration and validation
- Unified error handling across all tools
- Pluggable auth (
none,jwt,oauth) - Swappable storage backends:
in-memory,filesystem,Supabase,Cloudflare KV/R2/D1 - Structured logging with optional OpenTelemetry tracing
- Runs locally (stdio/HTTP) or on Cloudflare Workers from the same codebase
Earthquake-specific:
- Two independent global data sources: USGS ComCat (full metadata) and EMSC SeismicPortal (an independent catalog from the European-Mediterranean Seismological Centre, with no PAGER/DYFI/ShakeMap metadata and station coverage densest around Europe and the Mediterranean)
- USGS real-time GeoJSON feeds (CDN-cached, fast availability) plus FDSN event query API
- EMSC FDSN-WS event and count endpoints
- No API key required — both USGS and EMSC are fully public
Agent-friendly output:
- Source attribution on every response (
usgs/emsc) so agents can reason about data provenance exceeds_limitflag on count responses surfaces truncation risk before a full search- Fields a source does not publish come back
null, never as a fabricated zero —tsunamiandstatusare null on EMSC events, and the rendered text says "not published by source" rather than "no tsunami" or "reviewed" source_catalogandauthcarry provenance (which catalog and which authoritative agency produced a solution) so agents can weigh two sources against each other- USGS-only filters dropped for an EMSC query are named in
ignoredFilterson bothearthquake_searchandearthquake_count - An upstream rejection surfaces the service's own explanation (the offending parameter and its accepted format) in the error message, not just a status code; when the service explains nothing, the error says so under its own reason rather than passing the raw upstream body through
event_typetravels with every event, so a quarry blast or explosion is never silently read as an earthquake
Getting started
Public Hosted Instance
A public instance is available at https://earthquake.caseyjhand.com/mcp — no installation required. Point any MCP client at it via Streamable HTTP:
{
"mcpServers": {
"earthquake-mcp-server": {
"type": "streamable-http",
"url": "https://earthquake.caseyjhand.com/mcp"
}
}
}
Self-Hosted / Local
Add the following to your MCP client configuration file.
{
"mcpServers": {
"earthquake-mcp-server": {
"type": "stdio",
"command": "bunx",
"args": ["@cyanheads/earthquake-mcp-server@latest"],
"env": {
"MCP_TRANSPORT_TYPE": "stdio",
"MCP_LOG_LEVEL": "info"
}
}
}
}
Or with npx (no Bun required):
{
"mcpServers": {
"earthquake-mcp-server": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@cyanheads/earthquake-mcp-server@latest"],
"env": {
"MCP_TRANSPORT_TYPE": "stdio",
"MCP_LOG_LEVEL": "info"
}
}
}
}
Or with Docker:
{
"mcpServers": {
"earthquake-mcp-server": {
"type": "stdio",
"command": "docker",
"args": ["run", "-i", "--rm", "-e", "MCP_TRANSPORT_TYPE=stdio", "ghcr.io/cyanheads/earthquake-mcp-server:latest"]
}
}
}
For Streamable HTTP, set the transport and start the server:
MCP_TRANSPORT_TYPE=http MCP_HTTP_PORT=3010 bun run start:http
# Server listens at http://localhost:3010/mcp
Prerequisites
- Bun v1.3.0 or higher.
- No API keys required — USGS and EMSC data is fully public.
Installation
- Clone the repository:
git clone https://github.com/cyanheads/earthquake-mcp-server.git
- Navigate into the directory:
cd earthquake-mcp-server
- Install dependencies:
bun install
Configuration
All configuration is validated at startup via Zod schemas in src/config/server-config.ts. Key environment variables:
| Variable | Description | Default |
|---|---|---|
MCP_TRANSPORT_TYPE |
Transport: stdio or http |
stdio |
MCP_HTTP_PORT |
HTTP server port | 3010 |
MCP_HTTP_ENDPOINT_PATH |
HTTP endpoint path where the MCP server is mounted | /mcp |
MCP_PUBLIC_URL |
Public origin override for TLS-terminating reverse-proxy deployments | none |
MCP_AUTH_MODE |
Authentication: none, jwt, or oauth |
none |
MCP_LOG_LEVEL |
Log level (debug, info, warning, error, etc.) |
info |
MCP_GC_PRESSURE_INTERVAL_MS |
Opt-in Bun-only forced-GC pressure loop (ms). Try 60000 if heap growth is observed under sustained HTTP load. |
0 (disabled) |
LOGS_DIR |
Directory for log files (Node.js only) | <project-root>/logs |
STORAGE_PROVIDER_TYPE |
Storage backend: in-memory, filesystem, supabase, cloudflare-kv/r2/d1 |
in-memory |
USGS_BASE_URL |
USGS API base URL. Override for testing or mirroring. | https://earthquake.usgs.gov |
EMSC_BASE_URL |
EMSC API base URL. Override for testing or mirroring. | https://www.seismicportal.eu |
DEFAULT_LIMIT |
Default result limit for earthquake_search |
100 |
REQUEST_TIMEOUT_MS |
HTTP timeout in milliseconds for upstream API calls | 10000 |
OTEL_ENABLED |
Enable OpenTelemetry | false |
Running the server
Local development
-
Build and run the production version:
# One-time build bun run rebuild # Run the built server bun run start:http # or bun run start:stdio -
Run checks and tests:
bun run devcheck # Lints, formats, type-checks, and more bun run test # Runs the test suite
Project structure
| Directory | Purpose |
|---|---|
src/mcp-server/tools |
Tool definitions (*.tool.ts). Four tools across USGS and EMSC. |
src/mcp-server/resources |
Resource definitions. Feed and event resources. |
src/services/usgs |
USGS ComCat service — GeoJSON feed fetcher and FDSN query API client. |
src/services/emsc |
EMSC SeismicPortal service — FDSN event search and count endpoints. |
src/config |
Server-specific environment variable parsing and validation with Zod. |
tests/ |
Unit and integration tests, mirroring the src/ structure. |
Development guide
See CLAUDE.md for development guidelines and architectural rules. The short version:
- Handlers throw, framework catches — no
try/catchin tool logic - Use
ctx.logfor logging,ctx.statefor storage - Register new tools and resources in the
createApp()arrays
Contributing
Issues and pull requests are welcome. Run checks and tests before submitting:
bun run devcheck
bun run test
License
This project is licensed under the Apache 2.0 License. See the LICENSE file for details.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。