@cyanheads/who-gho-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 CHANGED
@@ -1,7 +1,7 @@
1
1
  # Developer Protocol
2
2
 
3
3
  **Server:** who-gho-mcp-server
4
- **Version:** 0.1.3
4
+ **Version:** 0.1.4
5
5
  **Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) `^0.9.7`
6
6
  **Engines:** Bun ≥1.3.0, Node ≥24.0.0
7
7
  **MCP SDK:** `@modelcontextprotocol/sdk` ^1.29.0
package/Dockerfile CHANGED
@@ -1,13 +1,18 @@
1
1
  # ==============================================================================
2
2
  # Build Stage
3
3
  #
4
- # This stage installs all dependencies (including dev), builds the TypeScript
5
- # source code into JavaScript, and prepares the production assets.
4
+ # Uses a real Node.js image so that tsx runs under a proper Node runtime.
5
+ # The oven/bun image provides a `node` shim that actually runs Bun — Bun's
6
+ # module resolver can't locate tsx's CJS entry on Linux arm64, causing the
7
+ # build to fail. Node LTS resolves tsx correctly via the standard CJS loader.
6
8
  # ==============================================================================
7
- FROM oven/bun:1.3 AS build
9
+ FROM node:24-slim AS build
8
10
 
9
11
  WORKDIR /usr/src/app
10
12
 
13
+ # Install bun for dependency resolution (bun.lock format)
14
+ RUN npm install -g bun@1.3
15
+
11
16
  # Copy dependency manifests for optimized layer caching
12
17
  COPY package.json bun.lock ./
13
18
 
@@ -18,7 +23,7 @@ RUN bun install --frozen-lockfile
18
23
  COPY . .
19
24
 
20
25
  # Build the application
21
- RUN bun run build
26
+ RUN npm run build
22
27
 
23
28
 
24
29
  # ==============================================================================
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.2-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/who-gho-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/who-gho-mcp-server?style=flat-square&logo=npm&logoColor=white)](https://www.npmjs.com/package/@cyanheads/who-gho-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.2-blueviolet.svg?style=flat-square)](https://bun.sh/)
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/who-gho-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/who-gho-mcp-server?style=flat-square&logo=npm&logoColor=white)](https://www.npmjs.com/package/@cyanheads/who-gho-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.2-blueviolet.svg?style=flat-square)](https://bun.sh/)
11
11
 
12
12
  </div>
13
13
 
@@ -0,0 +1,12 @@
1
+ ---
2
+ summary: "Sync canonical tagline across all metadata surfaces"
3
+ breaking: false
4
+ security: false
5
+ ---
6
+
7
+ # 0.1.4 — 2026-05-23
8
+
9
+ ## Changed
10
+
11
+ - **`package.json`**, **`server.json`**, **`manifest.json`**: description standardized to `WHO Global Health Observatory — 3,059 indicators across 194 member states.`
12
+ - **`README.md`**: version badge updated to 0.1.4.
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@cyanheads/who-gho-mcp-server",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "mcpName": "io.github.cyanheads/who-gho-mcp-server",
5
- "description": "MCP server for the WHO Global Health Observatory — 3,059 global health indicators across 194 member states with country, region, year, and sex filters.",
5
+ "description": "WHO Global Health Observatory — 3,059 indicators across 194 member states.",
6
6
  "type": "module",
7
7
  "main": "dist/index.js",
8
8
  "types": "dist/index.d.ts",
@@ -30,6 +30,7 @@
30
30
  "format": "biome check --write --unsafe .",
31
31
  "lint:mcp": "tsx scripts/lint-mcp.ts",
32
32
  "lint:packaging": "tsx scripts/lint-packaging.ts",
33
+ "publish-mcp": "mcp-publisher login github -token \"$(security find-generic-password -a \"$USER\" -s mcp-publisher-github-pat -w)\" && mcp-publisher publish",
33
34
  "bundle": "npm run build && npx -y @anthropic-ai/mcpb pack . dist/who-gho-mcp-server.mcpb",
34
35
  "changelog:build": "tsx scripts/build-changelog.ts",
35
36
  "changelog:check": "tsx scripts/build-changelog.ts --check",
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/who-gho-mcp-server",
4
- "description": "WHO Global Health Observatory MCP server — 3,059 health indicators across 194 member states.",
4
+ "description": "WHO Global Health Observatory — 3,059 indicators across 194 member states.",
5
5
  "repository": {
6
6
  "url": "https://github.com/cyanheads/who-gho-mcp-server",
7
7
  "source": "github"
8
8
  },
9
- "version": "0.1.3",
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/who-gho-mcp-server",
15
15
  "runtimeHint": "bun",
16
- "version": "0.1.3",
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/who-gho-mcp-server",
44
44
  "runtimeHint": "bun",
45
- "version": "0.1.3",
45
+ "version": "0.1.4",
46
46
  "packageArguments": [
47
47
  {
48
48
  "type": "positional",