From 7fd2593e4899f35374f3971dbc34a78040a23ebc Mon Sep 17 00:00:00 2001 From: Daniel Walmsley Date: Wed, 27 Aug 2025 15:17:21 -0700 Subject: [PATCH] Increase timeout duration for API response --- src/handler/mcp-api-handler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/handler/mcp-api-handler.ts b/src/handler/mcp-api-handler.ts index 8859984..0ebf56b 100644 --- a/src/handler/mcp-api-handler.ts +++ b/src/handler/mcp-api-handler.ts @@ -786,7 +786,7 @@ export function initializeMcpApiHandler( // Set timeout after subscription is established timeout = setTimeout(async () => { await sendResponse(408, "Request timed out"); - }, 10 * 1000); + }, 600 * 1000); // Handle response close event res.on("close", async () => {