athena-quake-mcp
Enables users to explore live earthquake data from USGS, with an interactive widget for filtering and visualizing seismic events worldwide.
README
🌍 Earthquake Activity Explorer — Athena MCP Agent
An MCP server that exposes the live USGS earthquake catalogue and renders it as an embedded interactive widget inside Athena.
Built for the Athena AI Interview Challenge — subject: Earthquake activity explorer.
Live endpoints
| URL | |
|---|---|
| MCP endpoint | https://athena-quake-mcp.vercel.app/mcp |
| Widget preview | /widget?days=7&minMag=4.5 |
| Hydration harness | /widget/harness?days=7&minMag=4.5 |
| Health | /health |
No authentication — any MCP host can connect directly.
Real open/public data sources
No API keys, no scraping — official public feeds.
| Source | Use |
|---|---|
| USGS Earthquake Catalog (FDSN) | Every event: magnitude, depth, place, time, coordinates, tsunami flag, felt reports, significance |
| Open-Meteo Geocoding | Resolves "near Tokyo" into the lat/lon + radius the USGS query needs |
MCP tools
explore_earthquakes
Opens the interactive explorer. Worldwide, or centred on a place.
{ "place": "Tokyo, Japan", "radiusKm": 800, "days": 30, "minMagnitude": 4.5 }
Returns a text summary (for the model), structuredContent (for the widget and
programmatic use), and the interactive widget.
list_significant_earthquakes
The most significant recent events worldwide, ranked by magnitude — used to find where activity is happening before drilling in.
{ "days": 7, "minMagnitude": 5.0, "limit": 10 }
The widget — interactions
Four meaningful interactions (two were required), all relevant to the subject:
- Time range — 24h / 7d / 30d. Re-filters the map and the event list together.
- Magnitude threshold — All / 4+ / 5+ / 6+. Isolates the significant events.
- Sort order — Recent / Strongest / Deepest. Depth sorting surfaces the deep-focus subduction events that a magnitude sort buries.
- Event selection — click any list row or map circle. Expands full USGS detail (UTC time, magnitude type, depth band, coordinates, felt reports, significance score, link to USGS) and highlights that epicentre while dimming the rest.
Hovering any map circle scrubs a readout without changing state.
The map is a plain equirectangular projection with a graticule — no tiles, no external images. Circles are sized by magnitude and coloured by depth band (shallow <70km / intermediate 70–300km / deep >300km), which makes the Ring of Fire resolve out of the data itself.
Selecting an event also emits a follow-up prompt to the host, so the conversation can continue from what the user clicked.
Design notes
One dataset, every interaction. A single generous USGS query (up to 30 days, up to 500 events, ~27KB) backs the widget; every filter, sort and selection runs client-side. No interaction costs a round-trip, and the widget needs no network access of its own — which matters because iframe CSP varies between hosts.
Two render paths, one renderer. Hosts disagree on how a tool returns UI:
- Some render the embedded resource in the tool result → they get
renderWidget(payload), data inlined. - Others resolve the tool's static
_meta.ui.resourceUriviaresources/read, fetch the widget once as a template, then push data in at runtime → they getrenderWidgetTemplate(), which hydrates through the ext-apps bridge.
resources/read branches on whether the URI carries query params, so both paths serve
the queried data rather than a generic sample. Both build from the same boot()
renderer, so the UI cannot drift between them.
Graceful degradation. Hosts with no widget support still receive a complete text
summary plus structuredContent, so the model can answer regardless.
Safety. USGS place strings are third-party input and are rendered exclusively via
textContent / DOM construction — never innerHTML.
Run locally
npm install
npm run dev # http://localhost:3000/mcp
Smoke test:
curl -s http://localhost:3000/mcp \
-H 'content-type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"explore_earthquakes","arguments":{"days":7,"minMagnitude":4.5}}}'
Verify the hydration path without a chat client — the harness iframes the data-less template and posts a payload in exactly as a host does:
http://localhost:3000/widget/harness?days=7&minMag=4.5
Stack
Zero runtime dependencies. Hand-rolled JSON-RPC 2.0 over Streamable HTTP
(POST /mcp, SSE-framed when the client's Accept header asks for it), deployed as a
Node serverless function on Vercel. The ext-apps browser bundle is vendored into
lib/extAppsBundle.js via npm run build:bundle so it is traced into the serverless
bundle by a static import rather than a runtime fs read.
推荐服务器
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 模型以安全和受控的方式获取实时的网络信息。