@cyanheads/exchange-rates-mcp-server 0.1.4 → 0.1.5

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:** exchange-rates-mcp-server
4
- **Version:** 0.1.4
5
- **Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) `^0.10.6`
4
+ **Version:** 0.1.5
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:** exchange-rates-mcp-server
4
- **Version:** 0.1.4
5
- **Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) `^0.10.6`
4
+ **Version:** 0.1.5
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.4-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/exchange-rates-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/exchange-rates-mcp-server?style=flat-square&logo=npm&logoColor=white)](https://www.npmjs.com/package/@cyanheads/exchange-rates-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.5-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/exchange-rates-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/exchange-rates-mcp-server?style=flat-square&logo=npm&logoColor=white)](https://www.npmjs.com/package/@cyanheads/exchange-rates-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,29 @@
1
+ ---
2
+ summary: "Adopt @cyanheads/mcp-ts-core ^0.10.9; DataCanvas describe() filter and SQL-gate fixes reach fx_dataframe_* tools; new check-dependency-specifiers devcheck step + plugin-manifest packaging checks"
3
+ breaking: false
4
+ security: false
5
+ ---
6
+
7
+ # 0.1.5 — 2026-06-20
8
+
9
+ Framework maintenance pass: `@cyanheads/mcp-ts-core` `^0.10.6` → `^0.10.9` plus dependency refresh.
10
+
11
+ ## Added
12
+
13
+ - **`check-dependency-specifiers` devcheck step** — vendored `scripts/check-dependency-specifiers.ts`, registered in the devcheck run (flag `--no-dep-specifiers`); 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 literal `latest` dist-tag into the lock that would re-resolve past the manifest range on the next install. ([#246](https://github.com/cyanheads/mcp-ts-core/issues/246))
14
+ - **Plugin-manifest packaging checks** — `devcheck.config.json` gains `packaging.pluginManifests: true`, enabling `lint:packaging` to validate `.claude-plugin/plugin.json` and `.codex-plugin/plugin.json`/`mcp.json`: non-empty descriptions, unscoped machine name in display fields, and the full scoped package name in the `npx -y` install arg. ([#240](https://github.com/cyanheads/mcp-ts-core/issues/240))
15
+
16
+ ## Changed
17
+
18
+ - **DataCanvas describe() / SQL gate** — `fx_dataframe_describe` and `fx_dataframe_query` pick up two framework fixes: a `DuckdbProvider.describe({ tableName })` binder error on filtered table lookups is resolved ([#235](https://github.com/cyanheads/mcp-ts-core/issues/235)), and a `SELECT`-shaped query that fails to prepare (mistyped column, unknown function) now throws `ValidationError` with `reason: 'invalid_sql'` and the DuckDB binder detail, instead of the misleading `non_select_statement` ([#236](https://github.com/cyanheads/mcp-ts-core/issues/236)).
19
+ - **Fresh-scaffold devcheck guards** — `scripts/devcheck.ts`, `scripts/build-changelog.ts`, `scripts/check-framework-antipatterns.ts`, and `scripts/check-skill-versions.ts` re-synced with the framework's git-repo and worktree-deletion guards. ([#242](https://github.com/cyanheads/mcp-ts-core/issues/242), [#243](https://github.com/cyanheads/mcp-ts-core/issues/243), [#237](https://github.com/cyanheads/mcp-ts-core/issues/237))
20
+ - **Vendored skills** — 14 `skills/<name>/SKILL.md` re-synced to the installed framework version (`add-tool`, `api-auth`, `api-canvas`, `api-config`, `api-context`, `api-errors`, `api-services`, `api-telemetry`, `field-test`, `git-wrapup`, `orchestrations`, `polish-docs-meta`, `report-issue-local`, `tool-defs-analysis`).
21
+ - **`frankfurter-service.ts`** — outbound `User-Agent` string synced to the current version.
22
+
23
+ ### Dependencies
24
+
25
+ - `@cyanheads/mcp-ts-core` ^0.10.6 → ^0.10.9
26
+ - `@duckdb/node-api` ^1.5.3-r.3 → ^1.5.4-r.1
27
+ - `@biomejs/biome` ^2.4.16 → ^2.5.0
28
+ - `@types/node` ^25.9.3 → ^26.0.0
29
+ - `vitest` ^4.1.8 → ^4.1.9
@@ -155,7 +155,7 @@ class FrankfurterService {
155
155
  response = await fetch(url, {
156
156
  headers: {
157
157
  Accept: 'application/json',
158
- 'User-Agent': 'exchange-rates-mcp-server/0.1.1',
158
+ 'User-Agent': 'exchange-rates-mcp-server/0.1.5',
159
159
  },
160
160
  signal: AbortSignal.timeout(10_000),
161
161
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cyanheads/exchange-rates-mcp-server",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "mcpName": "io.github.cyanheads/exchange-rates-mcp-server",
5
5
  "description": "Convert currencies, get FX rates, and query historical ECB exchange rate data via MCP. STDIO or Streamable HTTP.",
6
6
  "type": "module",
@@ -87,18 +87,18 @@
87
87
  "access": "public"
88
88
  },
89
89
  "dependencies": {
90
- "@cyanheads/mcp-ts-core": "^0.10.6",
91
- "@duckdb/node-api": "^1.5.3-r.3",
90
+ "@cyanheads/mcp-ts-core": "^0.10.9",
91
+ "@duckdb/node-api": "^1.5.4-r.1",
92
92
  "pino-pretty": "^13.1.3",
93
93
  "zod": "^4.4.3"
94
94
  },
95
95
  "devDependencies": {
96
- "@biomejs/biome": "^2.4.16",
97
- "@types/node": "^25.9.3",
96
+ "@biomejs/biome": "^2.5.0",
97
+ "@types/node": "^26.0.0",
98
98
  "depcheck": "^1.4.7",
99
99
  "ignore": "^7.0.5",
100
100
  "tsc-alias": "^1.8.17",
101
101
  "typescript": "^6.0.3",
102
- "vitest": "^4.1.8"
102
+ "vitest": "^4.1.9"
103
103
  }
104
104
  }
package/server.json CHANGED
@@ -6,7 +6,7 @@
6
6
  "url": "https://github.com/cyanheads/exchange-rates-mcp-server",
7
7
  "source": "github"
8
8
  },
9
- "version": "0.1.4",
9
+ "version": "0.1.5",
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/exchange-rates-mcp-server",
21
21
  "runtimeHint": "bun",
22
- "version": "0.1.4",
22
+ "version": "0.1.5",
23
23
  "packageArguments": [
24
24
  {
25
25
  "type": "positional",
@@ -62,7 +62,7 @@
62
62
  "registryBaseUrl": "https://registry.npmjs.org",
63
63
  "identifier": "@cyanheads/exchange-rates-mcp-server",
64
64
  "runtimeHint": "bun",
65
- "version": "0.1.4",
65
+ "version": "0.1.5",
66
66
  "packageArguments": [
67
67
  {
68
68
  "type": "positional",