We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ad46b3 commit f985a3cCopy full SHA for f985a3c
2 files changed
CLAUDE.md
@@ -55,7 +55,7 @@ npm run build:server
55
56
| 变量 | 默认值 | 说明 |
57
|------|--------|------|
58
-| `WS_PORT` | 3000 | WebSocket 服务器端口 |
+| `WS_PORT` | 3888 | WebSocket 服务器端口 |
59
| `LOG_LEVEL` | info | 日志级别 (debug/info/warn/error) |
60
61
## MCP 工具
server/src/ws/server.ts
@@ -3,7 +3,7 @@ import { ClientMessage } from "@wire-agent/protocol";
3
import { executorManager } from "../executor/manager";
4
import { wsLogger as log } from "../utils/logger";
5
6
-const WS_PORT = parseInt(process.env.WS_PORT || "3000", 10);
+const WS_PORT = parseInt(process.env.WS_PORT || "3888", 10);
7
8
let wss: WebSocketServer | null = null;
9
0 commit comments