@cyanheads/fema-mcp-server 0.1.8 → 0.1.9

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/AGENTS.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # Developer Protocol
2
2
 
3
3
  **Server:** fema-mcp-server
4
- **Version:** 0.1.8
5
- **Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) `^0.10.6`
4
+ **Version:** 0.1.9
5
+ **Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) `^0.10.9`
6
6
  **Engines:** Bun ≥1.3.0, Node ≥24.0.0
7
7
  **MCP SDK:** `@modelcontextprotocol/sdk` ^1.29.0
8
8
  **Zod:** ^4.4.3
package/CLAUDE.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # Developer Protocol
2
2
 
3
3
  **Server:** fema-mcp-server
4
- **Version:** 0.1.8
5
- **Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) `^0.10.6`
4
+ **Version:** 0.1.9
5
+ **Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) `^0.10.9`
6
6
  **Engines:** Bun ≥1.3.0, Node ≥24.0.0
7
7
  **MCP SDK:** `@modelcontextprotocol/sdk` ^1.29.0
8
8
  **Zod:** ^4.4.3
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.8-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/fema-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/fema-mcp-server?style=flat-square&logo=npm&logoColor=white)](https://www.npmjs.com/package/@cyanheads/fema-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.11-blueviolet.svg?style=flat-square)](https://bun.sh/)
10
+ [![Version](https://img.shields.io/badge/Version-0.1.9-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/fema-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/fema-mcp-server?style=flat-square&logo=npm&logoColor=white)](https://www.npmjs.com/package/@cyanheads/fema-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.11-blueviolet.svg?style=flat-square)](https://bun.sh/)
11
11
 
12
12
  </div>
13
13
 
@@ -0,0 +1,30 @@
1
+ ---
2
+ summary: "Adopt mcp-ts-core ^0.10.9 — Canvas describe() filter-qualification fix, invalid_sql gate classification, two new devcheck guards (dependency specifiers, plugin manifests), @duckdb/node-api + dev-dep refresh"
3
+ breaking: false
4
+ security: false
5
+ ---
6
+
7
+ # 0.1.9 — 2026-06-20
8
+
9
+ ## Added
10
+
11
+ - **`check-dependency-specifiers` devcheck step** — new `scripts/check-dependency-specifiers.ts`, registered in the devcheck run; hard-fails on floating specifiers (`latest`, `*`, pre-release dist-tags) in `package.json`'s dependency sections and `bun.lock`'s `workspaces` map. Catches a `bun update --latest` writing a `latest` dist-tag into the lock that would silently re-resolve a held dependency on the next install ([mcp-ts-core #246](https://github.com/cyanheads/mcp-ts-core/issues/246)).
12
+ - **Plugin marketplace manifest checks** in `lint-packaging.ts` (check 10) — validates `.claude-plugin/plugin.json` and `.codex-plugin/plugin.json` for non-empty descriptions, unscoped display names, and the full scoped package name in the install arg; gated by the new `devcheck.config.json` `packaging.pluginManifests` flag ([mcp-ts-core #240](https://github.com/cyanheads/mcp-ts-core/issues/240)).
13
+
14
+ ## Changed
15
+
16
+ - **`devcheck.config.json`** — added `packaging.pluginManifests: true` to enable the new plugin-manifest validation.
17
+ - Project skills and devcheck scripts re-synced to the framework 0.10.7–0.10.9 revisions, including the fresh-scaffold devcheck guards (changelog sync, git-dependent checks skip cleanly outside a git repo).
18
+
19
+ ## Fixed
20
+
21
+ - **Canvas `describe({ tableName })`** — picks up the framework fix qualifying the pushed `WHERE` filters with the table alias; a filtered `describe()` previously raised a DuckDB Binder Error (ambiguous `table_name`) against `fema_dataframe_describe` ([mcp-ts-core #235](https://github.com/cyanheads/mcp-ts-core/issues/235)).
22
+ - **Canvas SQL gate classification** — a `SELECT`-shaped statement that parses but fails to prepare (mistyped column, unknown function) on `fema_dataframe_query` now throws `ValidationError` with `data.reason: 'invalid_sql'` and the DuckDB binder detail, instead of the misleading `non_select_statement` ([mcp-ts-core #236](https://github.com/cyanheads/mcp-ts-core/issues/236)).
23
+
24
+ ## Dependency bumps
25
+
26
+ - `@cyanheads/mcp-ts-core` ^0.10.6 → ^0.10.9
27
+ - `@duckdb/node-api` ^1.5.3-r.3 → ^1.5.4-r.1
28
+ - `@biomejs/biome` ^2.4.16 → ^2.5.0
29
+ - `@types/node` ^25.9.3 → ^26.0.0
30
+ - `vitest` ^4.1.8 → ^4.1.9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cyanheads/fema-mcp-server",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "description": "Query FEMA disaster declarations, public assistance grants, housing aid, and NFIP flood insurance claims via MCP. STDIO or Streamable HTTP.",
5
5
  "mcpName": "io.github.cyanheads/fema-mcp-server",
6
6
  "type": "module",
@@ -88,18 +88,18 @@
88
88
  "access": "public"
89
89
  },
90
90
  "dependencies": {
91
- "@cyanheads/mcp-ts-core": "^0.10.6",
92
- "@duckdb/node-api": "^1.5.3-r.3",
91
+ "@cyanheads/mcp-ts-core": "^0.10.9",
92
+ "@duckdb/node-api": "^1.5.4-r.1",
93
93
  "pino-pretty": "^13.1.3",
94
94
  "zod": "^4.4.3"
95
95
  },
96
96
  "devDependencies": {
97
- "@biomejs/biome": "^2.4.16",
98
- "@types/node": "^25.9.3",
97
+ "@biomejs/biome": "^2.5.0",
98
+ "@types/node": "^26.0.0",
99
99
  "depcheck": "^1.4.7",
100
100
  "ignore": "^7.0.5",
101
101
  "tsc-alias": "^1.8.17",
102
102
  "typescript": "^6.0.3",
103
- "vitest": "^4.1.8"
103
+ "vitest": "^4.1.9"
104
104
  }
105
105
  }
package/server.json CHANGED
@@ -6,7 +6,7 @@
6
6
  "url": "https://github.com/cyanheads/fema-mcp-server",
7
7
  "source": "github"
8
8
  },
9
- "version": "0.1.8",
9
+ "version": "0.1.9",
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/fema-mcp-server",
21
21
  "runtimeHint": "bun",
22
- "version": "0.1.8",
22
+ "version": "0.1.9",
23
23
  "packageArguments": [
24
24
  {
25
25
  "type": "positional",
@@ -48,7 +48,7 @@
48
48
  "registryBaseUrl": "https://registry.npmjs.org",
49
49
  "identifier": "@cyanheads/fema-mcp-server",
50
50
  "runtimeHint": "bun",
51
- "version": "0.1.8",
51
+ "version": "0.1.9",
52
52
  "packageArguments": [
53
53
  {
54
54
  "type": "positional",