From 74bbdde3731cfad89471d6369635a9fce56af253 Mon Sep 17 00:00:00 2001 From: Max Techera <[REDACTED_EMAIL]> Date: Wed, 4 Mar 2026 13:21:04 +0000 Subject: [PATCH] fix: bump @modelcontextprotocol/sdk to 1.18.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reverts the SDK downgrade that caused MCP server initialization timeouts in production (Confluence + Jira). - SDK 1.10.1 (current production) → timeout after 60s connecting to Atlassian APIs - SDK 1.18.0 (pre-upgrade) → worked fine - Error manifested as HTTP/2 protocol errors + EventSource failures in frontend Root cause: production network path to Atlassian is slower than staging, exposing the timeout regression in 1.10.1. Fixes: MCP error -32001 Request timed out (code: -32001, data: { timeout: 60000 }) --- packages/components/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/components/package.json b/packages/components/package.json index 7752d942cb2..09098b9ad76 100644 --- a/packages/components/package.json +++ b/packages/components/package.json @@ -72,7 +72,7 @@ "@mem0/community": "^0.0.1", "@mendable/firecrawl-js": "^1.18.2", "@mistralai/mistralai": "0.1.3", - "@modelcontextprotocol/sdk": "^1.10.1", + "@modelcontextprotocol/sdk": "^1.18.0", "@modelcontextprotocol/server-brave-search": "^0.6.2", "@modelcontextprotocol/server-github": "^2025.1.23", "@modelcontextprotocol/server-postgres": "^0.6.2",