Skip to content

Commit f81ee81

Browse files
DisturbingDisturbing
andauthored
Incorrect endpoint for remote container (#80)
Co-authored-by: Disturbing <hello@xavalabs.com>
1 parent 6bffc05 commit f81ee81

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/mcp-toolbox/src/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,7 @@ if (!PROXY_ID) {
6464

6565
// Construct MCP_PROXY_URL with proxyId and configurable host
6666
const BASE_MCP_PROXY_URL =
67-
process.env.MCP_PROXY_URL ||
68-
`ws://${MCP_SERVER_HOST}/api/remote-container/ws`;
67+
process.env.MCP_PROXY_URL || `ws://${MCP_SERVER_HOST}/remote-container/ws`;
6968
const url = new URL(BASE_MCP_PROXY_URL);
7069
url.searchParams.set("proxyId", PROXY_ID);
7170
const MCP_PROXY_URL = url.toString();

0 commit comments

Comments
 (0)