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 43fa8ff commit 50bf855Copy full SHA for 50bf855
Server/build/unity/mcpUnity.js
@@ -41,7 +41,7 @@ export class McpUnity {
41
// Close any existing connection
42
this.disconnect();
43
return new Promise((resolve, reject) => {
44
- const wsUrl = `ws://localhost:${this.port}`;
+ const wsUrl = `ws://localhost:${this.port}/McpUnity`;
45
this.logger.debug(`Connecting to ${wsUrl}...`);
46
try {
47
this.ws = new WebSocket(wsUrl);
Server/src/unity/mcpUnity.ts
@@ -73,7 +73,7 @@ export class McpUnity {
73
74
75
return new Promise<void>((resolve, reject) => {
76
77
78
79
0 commit comments