From 91b2d7c63c3d66b5ad23320cd72f051d530df267 Mon Sep 17 00:00:00 2001 From: Joshua Jewell Date: Thu, 9 Apr 2026 10:08:17 +0000 Subject: [PATCH 1/2] fix: sync version, license, description, and README ref across package files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - mcp-bridge/package.json: 0.2.0 → 0.3.1, MPL-2.0 → PMPL-1.0-or-later - mcp-bridge/main.js: SERVER_VERSION 0.3.0 → 0.3.1 - Both package.json descriptions: 18 → 96 cartridges (matches actual count) - Root package.json files array: README.md → README.adoc (file that exists) --- mcp-bridge/package.json | 6 +++--- package.json | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/mcp-bridge/package.json b/mcp-bridge/package.json index 44b68cd..cda6b4f 100644 --- a/mcp-bridge/package.json +++ b/mcp-bridge/package.json @@ -1,8 +1,8 @@ { "name": "@hyperpolymath/boj-server", - "version": "0.2.0", - "description": "Bundle of Joy (BoJ) MCP Server — cartridge-based DevOps toolkit with 18 domain cartridges (database, container, git, k8s, observability, secrets, IaC, and more)", - "license": "MPL-2.0", + "version": "0.3.1", + "description": "Bundle of Joy (BoJ) MCP Server — cartridge-based DevOps toolkit with 96 domain cartridges (database, container, git, k8s, observability, secrets, IaC, and more)", + "license": "PMPL-1.0-or-later", "author": "Jonathan D.A. Jewell ", "repository": { "type": "git", diff --git a/package.json b/package.json index 8ad170d..f6ccb8a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@hyperpolymath/boj-server", "version": "0.3.1", - "description": "Bundle of Joy (BoJ) MCP Server — cartridge-based DevOps toolkit with 18 domain cartridges (database, container, git, k8s, observability, secrets, IaC, and more)", + "description": "Bundle of Joy (BoJ) MCP Server — cartridge-based DevOps toolkit with 96 domain cartridges (database, container, git, k8s, observability, secrets, IaC, and more)", "license": "PMPL-1.0-or-later", "author": "Jonathan D.A. Jewell ", "repository": { @@ -34,7 +34,7 @@ "files": [ "mcp-bridge/", "LICENSE", - "README.md" + "README.adoc" ], "publishConfig": { "access": "public", From 7eb919f4a57dc7a0008eb16cbe89b4d675b8a468 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 9 Apr 2026 14:14:06 +0000 Subject: [PATCH 2/2] fix: update SERVER_VERSION to 0.3.1 in mcp-bridge/main.js https://claude.ai/code/session_0141F6bKLDKb5XMesjh4iDkn --- mcp-bridge/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mcp-bridge/main.js b/mcp-bridge/main.js index 01e33d5..7ea9c15 100755 --- a/mcp-bridge/main.js +++ b/mcp-bridge/main.js @@ -13,7 +13,7 @@ const BOJ_BASE = process.env.BOJ_URL || "http://localhost:7700"; const SERVER_NAME = "boj-server"; -const SERVER_VERSION = "0.3.0"; +const SERVER_VERSION = "0.3.1"; // =================================================================== // HARDENING: Prompt injection detection