@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 +1 -1
- package/Dockerfile +9 -4
- package/README.md +1 -1
- package/changelog/0.1.x/0.1.4.md +12 -0
- package/package.json +3 -2
- package/server.json +4 -4
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.
|
|
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
|
-
#
|
|
5
|
-
#
|
|
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
|
|
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
|
|
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
|
-
[](./CHANGELOG.md) [](./LICENSE) [](https://github.com/users/cyanheads/packages/container/package/who-gho-mcp-server) [](https://modelcontextprotocol.io/) [](https://www.npmjs.com/package/@cyanheads/who-gho-mcp-server) [](https://www.typescriptlang.org/) [](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
|
+
"version": "0.1.4",
|
|
4
4
|
"mcpName": "io.github.cyanheads/who-gho-mcp-server",
|
|
5
|
-
"description": "
|
|
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
|
|
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.
|
|
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.
|
|
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.
|
|
45
|
+
"version": "0.1.4",
|
|
46
46
|
"packageArguments": [
|
|
47
47
|
{
|
|
48
48
|
"type": "positional",
|