We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0896edb commit e6b9cf9Copy full SHA for e6b9cf9
server/index.ts
@@ -1,6 +1,3 @@
1
-import "./sentry";
2
-import * as Sentry from "@sentry/node";
3
-
4
import { serve } from "@hono/node-server";
5
import dotenv from "dotenv";
6
import fixPath from "fix-path";
@@ -283,7 +280,7 @@ logBox(`http://${SERVER_HOSTNAME}:${displayPort}`, "🎵 MCPJam");
283
280
const server = serve({
284
281
fetch: app.fetch,
285
282
port: SERVER_PORT,
286
- hostname: "0.0.0.0", // Bind to all interfaces for Docker
+ hostname: "127.0.0.1",
287
});
288
289
// Handle graceful shutdown
0 commit comments