@nine-lab/nine-mu 0.1.256 → 0.1.257
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
|
@@ -44,7 +44,7 @@ export class NineChatManager {
|
|
|
44
44
|
|
|
45
45
|
//trace.log(this.#mcpClient);
|
|
46
46
|
|
|
47
|
-
this.#mcpClient.connect(transport, {timeout:
|
|
47
|
+
this.#mcpClient.connect(transport, {timeout: 3000000})
|
|
48
48
|
.then( async () => {
|
|
49
49
|
this.#updateStatus("✅ MCP Connected");
|
|
50
50
|
|
|
@@ -114,7 +114,7 @@ export class NineChatManager {
|
|
|
114
114
|
return this.#mcpClient.callTool(
|
|
115
115
|
{ name: toolName, arguments: args },
|
|
116
116
|
undefined, // 필요 시 extra 변수 자리 (기본값 undefined)
|
|
117
|
-
{ timeout:
|
|
117
|
+
{ timeout: 3000000 } // 💡 개별 요청 타임아웃을 5분으로 확장
|
|
118
118
|
);
|
|
119
119
|
}
|
|
120
120
|
|