From 9354db5c0d7f7b6473b45908ad1344d9eb5681cb Mon Sep 17 00:00:00 2001 From: pro-vi Date: Fri, 12 Dec 2025 13:46:52 -0800 Subject: [PATCH] fix(deps): bump @utcp/mcp to ^1.1.0 for configurable timeout @utcp/mcp@1.1.0+ includes the fix for configurable MCP operation timeout (universal-tool-calling-protocol/typescript-utcp#15). Without this bump, code-mode-mcp stays pinned to 1.0.x which has a hardcoded 15s timeout that breaks slow MCP tools (e.g., LLM providers via OpenRouter that need 30-60s+). Users can now set `timeout` in their UTCP config to override the default. --- code-mode-mcp/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code-mode-mcp/package.json b/code-mode-mcp/package.json index 4f36b18..0aeb063 100644 --- a/code-mode-mcp/package.json +++ b/code-mode-mcp/package.json @@ -55,7 +55,7 @@ "@utcp/dotenv-loader": "^1.0.0", "@utcp/file": "^1.0.0", "@utcp/http": "^1.0.13", - "@utcp/mcp": "^1.0.17", + "@utcp/mcp": "^1.1.0", "@utcp/sdk": "^1.0.16", "@utcp/text": "^1.0.12", "dotenv": "^16.0.0",