Skip to content

Commit be64452

Browse files
committed
fix: bind to ipv4 and ipv6
1 parent ae375be commit be64452

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/MCPProxy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ export const startSSEServer = async ({
283283
res.writeHead(404).end();
284284
});
285285

286-
httpServer.listen(port, "0.0.0.0");
286+
httpServer.listen(port, "::");
287287

288288
console.error(
289289
`server is running on SSE at http://localhost:${port}${endpoint}`,

0 commit comments

Comments
 (0)