@cyanheads/earthquake-mcp-server 0.1.10 → 0.1.11

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 CHANGED
@@ -2,8 +2,8 @@
2
2
 
3
3
  **Server:** earthquake-mcp-server
4
4
  **Package:** `@cyanheads/earthquake-mcp-server`
5
- **Version:** 0.1.10
6
- **Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) `^0.9.16`
5
+ **Version:** 0.1.11
6
+ **Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) `^0.9.21`
7
7
  **Engines:** Bun ≥1.3.0, Node ≥24.0.0
8
8
  **MCP SDK:** `@modelcontextprotocol/sdk` ^1.29.0
9
9
  **Zod:** ^4.4.3
@@ -272,10 +272,14 @@ Available skills:
272
272
  | `api-telemetry` | OTel catalog: spans, metrics, completion logs, env config, cardinality rules |
273
273
  | `api-testing` | createMockContext, test patterns |
274
274
  | `api-utils` | Formatting, parsing, security, pagination, scheduling, telemetry helpers |
275
+ | `api-mirror` | MirrorService — persistent local SQLite mirror of a bulk upstream dataset (Tier 3 opt-in) |
275
276
  | `api-workers` | Cloudflare Workers runtime |
277
+ | `orchestrations` | Chain task skills into a gated multi-phase pipeline — build-out, QA-fix, update-ship — when you can spawn sub-agents |
276
278
  | `report-issue-framework` | File bug/feature request against @cyanheads/mcp-ts-core |
277
279
  | `report-issue-local` | File bug/feature request against this server's repo |
278
280
 
281
+ **Chaining skills into pipelines.** When the user wants a multi-phase effort — build this server out, QA-and-fix the surface, update-and-ship — *and you can spawn sub-agents*, `skills/orchestrations/SKILL.md` sequences the task skills above into a gated pipeline with verification at each step. Read it to drive the run. Optional: skip it if you can't orchestrate sub-agents, and ignore it entirely if you were *spawned* as one — you've already been scoped to a single phase.
282
+
279
283
  When you complete a skill's checklist, check the boxes and add a completion timestamp at the end (e.g., `Completed: 2026-03-11`).
280
284
 
281
285
  ---
@@ -296,6 +300,7 @@ When you complete a skill's checklist, check the boxes and add a completion time
296
300
  | `bun run lint:packaging` | Validate env var alignment between `manifest.json` and `server.json` (skipped cleanly when `manifest.json` is absent) |
297
301
  | `bun run list-skills` | List skills in `skills/` with name + description |
298
302
  | `bun run bundle` | Build and pack as `dist/earthquake-mcp-server.mcpb` for one-click Claude Desktop install |
303
+ | `bun run release:github` | Create GitHub Release from the current tag — attaches `.mcpb` bundle, uses tag subject as title |
299
304
  | `bun run start:stdio` | Production mode (stdio) |
300
305
  | `bun run start:http` | Production mode (HTTP) |
301
306
 
package/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
 
8
8
  <div align="center">
9
9
 
10
- [![Version](https://img.shields.io/badge/Version-0.1.10-blue.svg?style=flat-square)](./CHANGELOG.md) [![License](https://img.shields.io/badge/License-Apache%202.0-orange.svg?style=flat-square)](./LICENSE) [![Docker](https://img.shields.io/badge/Docker-ghcr.io-2496ED?style=flat-square&logo=docker&logoColor=white)](https://github.com/users/cyanheads/packages/container/package/earthquake-mcp-server) [![MCP SDK](https://img.shields.io/badge/MCP%20SDK-^1.29.0-green.svg?style=flat-square)](https://modelcontextprotocol.io/) [![npm](https://img.shields.io/npm/v/@cyanheads/earthquake-mcp-server?style=flat-square&logo=npm&logoColor=white)](https://www.npmjs.com/package/@cyanheads/earthquake-mcp-server) [![TypeScript](https://img.shields.io/badge/TypeScript-^6.0.3-3178C6.svg?style=flat-square)](https://www.typescriptlang.org/) [![Bun](https://img.shields.io/badge/Bun-v1.3.0-blueviolet.svg?style=flat-square)](https://bun.sh/)
10
+ [![Version](https://img.shields.io/badge/Version-0.1.11-blue.svg?style=flat-square)](./CHANGELOG.md) [![License](https://img.shields.io/badge/License-Apache%202.0-orange.svg?style=flat-square)](./LICENSE) [![Docker](https://img.shields.io/badge/Docker-ghcr.io-2496ED?style=flat-square&logo=docker&logoColor=white)](https://github.com/users/cyanheads/packages/container/package/earthquake-mcp-server) [![MCP SDK](https://img.shields.io/badge/MCP%20SDK-^1.29.0-green.svg?style=flat-square)](https://modelcontextprotocol.io/) [![npm](https://img.shields.io/npm/v/@cyanheads/earthquake-mcp-server?style=flat-square&logo=npm&logoColor=white)](https://www.npmjs.com/package/@cyanheads/earthquake-mcp-server) [![TypeScript](https://img.shields.io/badge/TypeScript-^6.0.3-3178C6.svg?style=flat-square)](https://www.typescriptlang.org/) [![Bun](https://img.shields.io/badge/Bun-v1.3.0-blueviolet.svg?style=flat-square)](https://bun.sh/)
11
11
 
12
12
  </div>
13
13
 
@@ -123,7 +123,7 @@ A public instance is available at `https://earthquake.caseyjhand.com/mcp` — no
123
123
  ```json
124
124
  {
125
125
  "mcpServers": {
126
- "earthquake": {
126
+ "earthquake-mcp-server": {
127
127
  "type": "streamable-http",
128
128
  "url": "https://earthquake.caseyjhand.com/mcp"
129
129
  }
@@ -138,7 +138,7 @@ Add the following to your MCP client configuration file.
138
138
  ```json
139
139
  {
140
140
  "mcpServers": {
141
- "earthquake": {
141
+ "earthquake-mcp-server": {
142
142
  "type": "stdio",
143
143
  "command": "bunx",
144
144
  "args": ["@cyanheads/earthquake-mcp-server@latest"],
@@ -156,7 +156,7 @@ Or with npx (no Bun required):
156
156
  ```json
157
157
  {
158
158
  "mcpServers": {
159
- "earthquake": {
159
+ "earthquake-mcp-server": {
160
160
  "type": "stdio",
161
161
  "command": "npx",
162
162
  "args": ["-y", "@cyanheads/earthquake-mcp-server@latest"],
@@ -174,7 +174,7 @@ Or with Docker:
174
174
  ```json
175
175
  {
176
176
  "mcpServers": {
177
- "earthquake": {
177
+ "earthquake-mcp-server": {
178
178
  "type": "stdio",
179
179
  "command": "docker",
180
180
  "args": ["run", "-i", "--rm", "-e", "MCP_TRANSPORT_TYPE=stdio", "ghcr.io/cyanheads/earthquake-mcp-server:latest"]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cyanheads/earthquake-mcp-server",
3
- "version": "0.1.10",
3
+ "version": "0.1.11",
4
4
  "mcpName": "io.github.cyanheads/earthquake-mcp-server",
5
5
  "description": "Search USGS and EMSC seismic data — real-time feeds, event queries, and earthquake counts via MCP. STDIO or Streamable HTTP.",
6
6
  "type": "module",
@@ -26,6 +26,7 @@
26
26
  "bundle": "bun run build && npx -y @anthropic-ai/mcpb pack . dist/earthquake-mcp-server.mcpb",
27
27
  "changelog:build": "bun run scripts/build-changelog.ts",
28
28
  "changelog:check": "bun run scripts/build-changelog.ts --check",
29
+ "release:github": "bun run scripts/release-github.ts",
29
30
  "publish-mcp": "mcp-publisher login github -token \"$(security find-generic-password -a \"$USER\" -s mcp-publisher-github-pat -w)\" && mcp-publisher publish",
30
31
  "start:stdio": "MCP_TRANSPORT_TYPE=stdio bun ./dist/index.js",
31
32
  "start:http": "MCP_TRANSPORT_TYPE=http bun ./dist/index.js"
@@ -75,7 +76,7 @@
75
76
  "access": "public"
76
77
  },
77
78
  "dependencies": {
78
- "@cyanheads/mcp-ts-core": "^0.9.16",
79
+ "@cyanheads/mcp-ts-core": "^0.9.21",
79
80
  "pino-pretty": "^13.1.3",
80
81
  "zod": "^4.4.3"
81
82
  },
@@ -86,6 +87,6 @@
86
87
  "ignore": "^7.0.5",
87
88
  "tsc-alias": "^1.8.17",
88
89
  "typescript": "^6.0.3",
89
- "vitest": "^4.1.7"
90
+ "vitest": "^4.1.8"
90
91
  }
91
92
  }
package/server.json CHANGED
@@ -12,14 +12,14 @@
12
12
  "url": "https://earthquake.caseyjhand.com/mcp"
13
13
  }
14
14
  ],
15
- "version": "0.1.10",
15
+ "version": "0.1.11",
16
16
  "packages": [
17
17
  {
18
18
  "registryType": "npm",
19
19
  "registryBaseUrl": "https://registry.npmjs.org",
20
20
  "identifier": "@cyanheads/earthquake-mcp-server",
21
21
  "runtimeHint": "bun",
22
- "version": "0.1.10",
22
+ "version": "0.1.11",
23
23
  "packageArguments": [
24
24
  {
25
25
  "type": "positional",
@@ -48,7 +48,7 @@
48
48
  "registryBaseUrl": "https://registry.npmjs.org",
49
49
  "identifier": "@cyanheads/earthquake-mcp-server",
50
50
  "runtimeHint": "bun",
51
- "version": "0.1.10",
51
+ "version": "0.1.11",
52
52
  "packageArguments": [
53
53
  {
54
54
  "type": "positional",