@nine-lab/nine-mu 0.1.225 → 0.1.227

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nine-lab/nine-mu",
3
- "version": "0.1.225",
3
+ "version": "0.1.227",
4
4
  "description": "AI-Driven Full-Stack Code Fabrication Engine",
5
5
  "type": "module",
6
6
  "main": "./dist/nine-mu.umd.js",
@@ -121,6 +121,8 @@ export class NineChat extends HTMLElement {
121
121
 
122
122
  if (parsed?.selected_tool === "source-missing") {
123
123
  nine.alert("메뉴 정리를 위한 라우터 정보 저장 화면으로 이동합니다.").then(res => {
124
+
125
+ trace.log(currRoutes, parsed?.data);
124
126
  this.#showDiff(currRoutes, parsed?.data, "json");
125
127
  });
126
128
  }
@@ -38,13 +38,12 @@ export class NineChatManager {
38
38
  capabilities: {
39
39
  tools: {},
40
40
  logging: {}
41
- },
42
- timeout: 300000 // 5분
41
+ }
43
42
  });
44
43
 
45
44
  trace.log(this.#mcpClient);
46
45
 
47
- this.#mcpClient.connect(transport)
46
+ this.#mcpClient.connect(transport, {timeout: 300000})
48
47
  .then( async () => {
49
48
  this.#updateStatus("✅ MCP Connected");
50
49