@nine-lab/nine-mu 0.1.234 → 0.1.235

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.234",
3
+ "version": "0.1.235",
4
4
  "description": "AI-Driven Full-Stack Code Fabrication Engine",
5
5
  "type": "module",
6
6
  "main": "./dist/nine-mu.umd.js",
@@ -108,7 +108,12 @@ export class NineChatManager {
108
108
  }
109
109
 
110
110
  async #callTool(toolName, args = {}) {
111
- return this.#mcpClient.callTool({ name: toolName, arguments: args });
111
+ // return this.#mcpClient.callTool({ name: toolName, arguments: args });
112
+ return this.#mcpClient.callTool(
113
+ { name: toolName, arguments: args },
114
+ undefined, // 필요 시 extra 변수 자리 (기본값 undefined)
115
+ { timeout: 300000 } // 💡 개별 요청 타임아웃을 5분으로 확장
116
+ );
112
117
  }
113
118
 
114
119
  async getRoutes(toolName, args = {}) {