@sleep2agi/commhub-server 0.5.0-preview.32 → 0.5.0-preview.33
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/package.json +1 -1
- package/src/index.ts +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sleep2agi/commhub-server",
|
|
3
|
-
"version": "0.5.0-preview.
|
|
3
|
+
"version": "0.5.0-preview.33",
|
|
4
4
|
"description": "CommHub Server \u2014 AI Agent communication hub with MCP protocol, multi-network isolation, user auth, and 18 MCP tools.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.ts",
|
package/src/index.ts
CHANGED
|
@@ -599,7 +599,7 @@ Bun.serve({
|
|
|
599
599
|
const license = db.get<any>("SELECT type, expires_at FROM licenses LIMIT 1");
|
|
600
600
|
return withCors(req, Response.json({
|
|
601
601
|
ok: true,
|
|
602
|
-
version: "
|
|
602
|
+
version: "0.5.0-preview.33",
|
|
603
603
|
api_version: "v3",
|
|
604
604
|
transport: "streamable-http",
|
|
605
605
|
sessions_count: count?.cnt ?? 0,
|
|
@@ -918,7 +918,7 @@ Bun.serve({
|
|
|
918
918
|
}
|
|
919
919
|
|
|
920
920
|
return withCors(req, new Response(
|
|
921
|
-
`CommHub MCP Server v0.
|
|
921
|
+
`CommHub MCP Server v0.5.0-preview.33 (Streamable HTTP + SSE Push)
|
|
922
922
|
|
|
923
923
|
Endpoints:
|
|
924
924
|
POST /mcp - MCP Streamable HTTP (for Claude Code / Codex)
|
|
@@ -1030,7 +1030,7 @@ process.on("SIGINT", shutdown);
|
|
|
1030
1030
|
|
|
1031
1031
|
console.log(`
|
|
1032
1032
|
╔══════════════════════════════════════════════════╗
|
|
1033
|
-
║ CommHub MCP Server v0.
|
|
1033
|
+
║ CommHub MCP Server v0.5.0-preview.33 ║
|
|
1034
1034
|
║ Transport: Streamable HTTP (Bun native) ║
|
|
1035
1035
|
║ Auth: ${AUTH_TOKEN ? "ENABLED (Bearer token)" : "DISABLED (set COMMHUB_AUTH_TOKEN)"}${"".padEnd(AUTH_TOKEN ? 5 : 0)}║
|
|
1036
1036
|
║ ║
|