@nine-lab/nine-mu 0.1.141 → 0.1.142
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -32,12 +32,14 @@ export class NineChatManager {
|
|
|
32
32
|
}, { capabilities: { tools: {} } });
|
|
33
33
|
|
|
34
34
|
// 전역 nine 객체의 safe를 활용 (try-catch 제거)
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
35
|
+
this.#client.connect(transport)
|
|
36
|
+
.then(() => {
|
|
37
|
+
this.#updateStatus("✅ MCP Connected");
|
|
38
|
+
})
|
|
39
|
+
.catch((err) => {
|
|
40
|
+
trace.error("❌ MCP 연결 실패", err);
|
|
41
|
+
this.#updateStatus("❌ Connection Failed");
|
|
42
|
+
});
|
|
41
43
|
|
|
42
44
|
this.#updateStatus("✅ MCP Connected");
|
|
43
45
|
|