@cyanheads/earthquake-mcp-server 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CLAUDE.md +1 -1
- package/Dockerfile +3 -2
- package/README.md +2 -2
- package/changelog/0.1.x/0.1.4.md +12 -0
- package/package.json +4 -3
- package/server.json +4 -4
package/CLAUDE.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
**Server:** earthquake-mcp-server
|
|
4
4
|
**Package:** `@cyanheads/earthquake-mcp-server`
|
|
5
|
-
**Version:** 0.1.
|
|
5
|
+
**Version:** 0.1.4
|
|
6
6
|
**Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) `^0.9.7`
|
|
7
7
|
**Engines:** Bun ≥1.3.0, Node ≥24.0.0
|
|
8
8
|
**MCP SDK:** `@modelcontextprotocol/sdk` ^1.29.0
|
package/Dockerfile
CHANGED
|
@@ -17,8 +17,9 @@ RUN bun install --frozen-lockfile
|
|
|
17
17
|
# Copy the rest of the source code
|
|
18
18
|
COPY . .
|
|
19
19
|
|
|
20
|
-
# Build the application
|
|
21
|
-
|
|
20
|
+
# Build the application. Use bun directly rather than through the build script wrapper
|
|
21
|
+
# to avoid tsx (Node CJS) failing under Bun's Linux runtime when bunfig.toml is present.
|
|
22
|
+
RUN bun scripts/build.ts
|
|
22
23
|
|
|
23
24
|
|
|
24
25
|
# ==============================================================================
|
package/README.md
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
<h1>@cyanheads/earthquake-mcp-server</h1>
|
|
3
|
-
<p><b>
|
|
3
|
+
<p><b>Search USGS and EMSC seismic data — real-time feeds, event queries, and earthquake counts via MCP. STDIO or Streamable HTTP.</b>
|
|
4
4
|
<div>4 Tools • 2 Resources</div>
|
|
5
5
|
</p>
|
|
6
6
|
</div>
|
|
7
7
|
|
|
8
8
|
<div align="center">
|
|
9
9
|
|
|
10
|
-
[](./CHANGELOG.md) [](./LICENSE) [](https://github.com/users/cyanheads/packages/container/package/earthquake-mcp-server) [](https://modelcontextprotocol.io/) [](https://www.npmjs.com/package/@cyanheads/earthquake-mcp-server) [](https://www.typescriptlang.org/) [](https://bun.sh/)
|
|
11
11
|
|
|
12
12
|
</div>
|
|
13
13
|
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
---
|
|
2
|
+
summary: "Sync tagline across all description surfaces; add publish-mcp script"
|
|
3
|
+
breaking: false
|
|
4
|
+
security: false
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# 0.1.4 — 2026-05-23
|
|
8
|
+
|
|
9
|
+
## Changed
|
|
10
|
+
|
|
11
|
+
- **Tagline**: Updated description across `package.json`, `server.json`, `manifest.json`, and README — new canonical form: "Search USGS and EMSC seismic data — real-time feeds, event queries, and earthquake counts."
|
|
12
|
+
- **`package.json`**: Added `publish-mcp` script (Keychain-backed `mcp-publisher` login + publish).
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cyanheads/earthquake-mcp-server",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"mcpName": "io.github.cyanheads/earthquake-mcp-server",
|
|
5
|
-
"description": "
|
|
5
|
+
"description": "Search USGS and EMSC seismic data — real-time feeds, event queries, and earthquake counts.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"types": "dist/index.d.ts",
|
|
@@ -36,7 +36,8 @@
|
|
|
36
36
|
"test": "vitest run",
|
|
37
37
|
"start": "node dist/index.js",
|
|
38
38
|
"start:stdio": "MCP_TRANSPORT_TYPE=stdio node dist/index.js",
|
|
39
|
-
"start:http": "MCP_TRANSPORT_TYPE=http node dist/index.js"
|
|
39
|
+
"start:http": "MCP_TRANSPORT_TYPE=http node dist/index.js",
|
|
40
|
+
"publish-mcp": "mcp-publisher login github -token \"$(security find-generic-password -a \"$USER\" -s mcp-publisher-github-pat -w)\" && mcp-publisher publish"
|
|
40
41
|
},
|
|
41
42
|
"keywords": [
|
|
42
43
|
"mcp",
|
package/server.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
3
|
"name": "io.github.cyanheads/earthquake-mcp-server",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "Search USGS and EMSC seismic data — real-time feeds, event queries, and earthquake counts.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"url": "https://github.com/cyanheads/earthquake-mcp-server",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
|
-
"version": "0.1.
|
|
9
|
+
"version": "0.1.4",
|
|
10
10
|
"packages": [
|
|
11
11
|
{
|
|
12
12
|
"registryType": "npm",
|
|
13
13
|
"registryBaseUrl": "https://registry.npmjs.org",
|
|
14
14
|
"identifier": "@cyanheads/earthquake-mcp-server",
|
|
15
15
|
"runtimeHint": "node",
|
|
16
|
-
"version": "0.1.
|
|
16
|
+
"version": "0.1.4",
|
|
17
17
|
"packageArguments": [
|
|
18
18
|
{
|
|
19
19
|
"type": "positional",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"registryBaseUrl": "https://registry.npmjs.org",
|
|
43
43
|
"identifier": "@cyanheads/earthquake-mcp-server",
|
|
44
44
|
"runtimeHint": "node",
|
|
45
|
-
"version": "0.1.
|
|
45
|
+
"version": "0.1.4",
|
|
46
46
|
"packageArguments": [
|
|
47
47
|
{
|
|
48
48
|
"type": "positional",
|