@cyanheads/nws-weather-mcp-server 0.6.0 → 0.6.1

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
@@ -1,7 +1,7 @@
1
1
  # Agent Protocol
2
2
 
3
3
  **Server:** nws-weather-mcp-server
4
- **Version:** 0.6.0
4
+ **Version:** 0.6.1
5
5
  **Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core)
6
6
 
7
7
  > **Read the framework docs first:** `node_modules/@cyanheads/mcp-ts-core/CLAUDE.md` contains the full API reference — builders, Context, error codes, exports, patterns. This file covers server-specific conventions only.
@@ -277,6 +277,7 @@ Available skills:
277
277
  | `security-pass` | Audit server for MCP-flavored security gaps: output injection, scope blast radius, input sinks, tenant isolation |
278
278
  | `polish-docs-meta` | Finalize docs, README, metadata, and agent protocol for shipping |
279
279
  | `maintenance` | Investigate changelogs, adopt upstream changes, sync skills to agent dirs |
280
+ | `orchestrations` | Chain task skills into a gated multi-phase pipeline — build-out, QA-fix, update-ship — when you can spawn sub-agents |
280
281
  | `report-issue-framework` | File a bug or feature request against `@cyanheads/mcp-ts-core` via `gh` CLI |
281
282
  | `report-issue-local` | File a bug or feature request against this server's own repo via `gh` CLI |
282
283
  | `tool-defs-analysis` | Read-only audit of tool/resource/prompt language: voice, leaks, defaults, recovery hints, sparsity |
@@ -289,12 +290,15 @@ Available skills:
289
290
  | `api-context` | Context interface, logger, state, progress |
290
291
  | `api-errors` | McpError, JsonRpcErrorCode, error patterns |
291
292
  | `api-linter` | Definition linter rule catalog — invoked by `bun run lint:mcp` and `devcheck` |
293
+ | `api-mirror` | MirrorService: persistent SQLite-backed local mirror of a bulk upstream dataset — FTS5, incremental sync, pluggable store |
292
294
  | `api-services` | LLM, Speech, Graph services |
293
295
  | `api-telemetry` | OTel catalog: spans, metrics, completion logs, env config, cardinality rules |
294
296
  | `api-testing` | createMockContext, test patterns |
295
297
  | `api-utils` | Formatting, parsing, security, pagination, scheduling, telemetry helpers |
296
298
  | `api-workers` | Cloudflare Workers runtime |
297
299
 
300
+ **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.
301
+
298
302
  When you complete a skill's checklist, check the boxes and add a completion timestamp at the end (e.g., `Completed: 2026-03-11`).
299
303
 
300
304
  ---
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.6.0-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/nws-weather-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/nws-weather-mcp-server?style=flat-square&logo=npm&logoColor=white)](https://www.npmjs.com/package/@cyanheads/nws-weather-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+-blueviolet.svg?style=flat-square)](https://bun.sh/)
10
+ [![Version](https://img.shields.io/badge/Version-0.6.1-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/nws-weather-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/nws-weather-mcp-server?style=flat-square&logo=npm&logoColor=white)](https://www.npmjs.com/package/@cyanheads/nws-weather-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+-blueviolet.svg?style=flat-square)](https://bun.sh/)
11
11
 
12
12
  </div>
13
13
 
@@ -156,7 +156,7 @@ A public instance is available at `https://nws.caseyjhand.com/mcp` — no instal
156
156
  ```json
157
157
  {
158
158
  "mcpServers": {
159
- "nws-weather": {
159
+ "nws-weather-mcp-server": {
160
160
  "type": "streamable-http",
161
161
  "url": "https://nws.caseyjhand.com/mcp"
162
162
  }
@@ -171,7 +171,7 @@ Add the following to your MCP client configuration file.
171
171
  ```json
172
172
  {
173
173
  "mcpServers": {
174
- "nws-weather": {
174
+ "nws-weather-mcp-server": {
175
175
  "type": "stdio",
176
176
  "command": "bunx",
177
177
  "args": ["@cyanheads/nws-weather-mcp-server@latest"],
@@ -189,7 +189,7 @@ Or with npx (no Bun required):
189
189
  ```json
190
190
  {
191
191
  "mcpServers": {
192
- "nws-weather": {
192
+ "nws-weather-mcp-server": {
193
193
  "type": "stdio",
194
194
  "command": "npx",
195
195
  "args": ["-y", "@cyanheads/nws-weather-mcp-server@latest"],
@@ -207,7 +207,7 @@ Or with Docker:
207
207
  ```json
208
208
  {
209
209
  "mcpServers": {
210
- "nws-weather": {
210
+ "nws-weather-mcp-server": {
211
211
  "type": "stdio",
212
212
  "command": "docker",
213
213
  "args": ["run", "-i", "--rm", "-e", "MCP_TRANSPORT_TYPE=stdio", "ghcr.io/cyanheads/nws-weather-mcp-server:latest"]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cyanheads/nws-weather-mcp-server",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "description": "Get US weather forecasts, active alerts, and current observations via the National Weather Service API. STDIO or Streamable HTTP.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -21,6 +21,7 @@
21
21
  "lint:packaging": "bun scripts/lint-packaging.ts",
22
22
  "changelog:build": "bun scripts/build-changelog.ts",
23
23
  "changelog:check": "bun scripts/build-changelog.ts --check",
24
+ "release:github": "tsx scripts/release-github.ts",
24
25
  "audit:refresh": "rm -f bun.lock && bun install && bun audit",
25
26
  "test": "vitest run",
26
27
  "list-skills": "bun scripts/list-skills.ts",
@@ -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
  "@opentelemetry/api": "^1.9.1",
80
81
  "pino-pretty": "^13.1.3",
81
82
  "zod": "^4.4.3"
@@ -83,11 +84,11 @@
83
84
  "devDependencies": {
84
85
  "@biomejs/biome": "^2.4.16",
85
86
  "@types/node": "^25.9.1",
86
- "@vitest/coverage-istanbul": "^4.1.7",
87
+ "@vitest/coverage-istanbul": "^4.1.8",
87
88
  "depcheck": "^1.4.7",
88
89
  "ignore": "^7.0.5",
89
90
  "tsc-alias": "^1.8.17",
90
91
  "typescript": "^6.0.3",
91
- "vitest": "^4.1.7"
92
+ "vitest": "^4.1.8"
92
93
  }
93
94
  }
package/server.json CHANGED
@@ -6,7 +6,7 @@
6
6
  "url": "https://github.com/cyanheads/nws-weather-mcp-server",
7
7
  "source": "github"
8
8
  },
9
- "version": "0.6.0",
9
+ "version": "0.6.1",
10
10
  "remotes": [
11
11
  {
12
12
  "type": "streamable-http",
@@ -19,7 +19,7 @@
19
19
  "registryBaseUrl": "https://registry.npmjs.org",
20
20
  "identifier": "@cyanheads/nws-weather-mcp-server",
21
21
  "runtimeHint": "bun",
22
- "version": "0.6.0",
22
+ "version": "0.6.1",
23
23
  "packageArguments": [
24
24
  { "type": "positional", "value": "run" },
25
25
  { "type": "positional", "value": "start:stdio" }
@@ -49,7 +49,7 @@
49
49
  "registryBaseUrl": "https://registry.npmjs.org",
50
50
  "identifier": "@cyanheads/nws-weather-mcp-server",
51
51
  "runtimeHint": "bun",
52
- "version": "0.6.0",
52
+ "version": "0.6.1",
53
53
  "packageArguments": [
54
54
  { "type": "positional", "value": "run" },
55
55
  { "type": "positional", "value": "start:http" }