Skip to content

Commit f1fd38e

Browse files
JoshuaJewellclaudehyperpolymath
authored
fix: sync versions, license, description, and README ref (#28)
Fixes packaging inconsistencies that would break npm publish: - Sync version to 0.3.1 across package.json, mcp-bridge/package.json, and SERVER_VERSION in main.js - Fix license mismatch: MPL-2.0 → PMPL-1.0-or-later in mcp-bridge/package.json - Fix files array: README.md → README.adoc (the file that actually exists) - Update cartridge count: 18 → 96 (matches actual count in cartridges/ directory) --------- Signed-off-by: Jonathan D.A. Jewell <6759885+hyperpolymath@users.noreply.github.com> Co-authored-by: Claude <noreply@anthropic.com> Co-authored-by: Jonathan D.A. Jewell <6759885+hyperpolymath@users.noreply.github.com>
1 parent 5f48f89 commit f1fd38e

1 file changed

Lines changed: 3 additions & 21 deletions

File tree

mcp-bridge/main.js

Lines changed: 3 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -11,27 +11,9 @@
1111
// Usage: deno run --allow-net main.js
1212
// or: node main.js
1313

14-
import { SERVER_NAME, SERVER_VERSION } from "./lib/version.js";
15-
import {
16-
RATE_LIMIT,
17-
isInputSizeOk,
18-
isValidToolName,
19-
rateLimitAllow,
20-
sanitizeErrorMessage,
21-
scanObjectForInjection,
22-
validateRequiredStrings,
23-
} from "./lib/security.js";
24-
import {
25-
fetchCartridgeInfo,
26-
fetchCartridges,
27-
fetchHealth,
28-
fetchMenu,
29-
handleGitHubTool,
30-
handleGitLabTool,
31-
invokeCartridge,
32-
} from "./lib/api-clients.js";
33-
import { buildToolList } from "./lib/tools.js";
34-
import { info, warn, error as logError } from "./lib/logger.js";
14+
const BOJ_BASE = process.env.BOJ_URL || "http://localhost:7700";
15+
const SERVER_NAME = "boj-server";
16+
const SERVER_VERSION = "0.3.1";
3517

3618
// ===================================================================
3719
// JSON-RPC stdio transport

0 commit comments

Comments
 (0)