From 062aca529d7bfa42639f2cc6d6f6275f4060d2ba Mon Sep 17 00:00:00 2001 From: tk Date: Sun, 23 Aug 2026 09:16:13 -0700 Subject: [PATCH] Add explicit request timeout to WorkIQ MCP server configs Declare a 300s request timeout for the workiq and workiq-preview MCP servers. Without it, a stalled tool call has no client-side bound. 300000 ms matches the service's server-side response ceiling, so it does not truncate any call that would otherwise succeed. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- plugins/workiq-preview/.mcp.json | 1 + plugins/workiq/.mcp.json | 1 + 2 files changed, 2 insertions(+) diff --git a/plugins/workiq-preview/.mcp.json b/plugins/workiq-preview/.mcp.json index 6b714cc..82495d8 100644 --- a/plugins/workiq-preview/.mcp.json +++ b/plugins/workiq-preview/.mcp.json @@ -5,6 +5,7 @@ "url": "https://workiq.svc.cloud.microsoft/mcp", "oauthClientId": "ba081686-5d24-4bc6-a0d6-d034ecffed87", "oauthPublicClient": true, + "timeout": 300000, "auth": { "redirectPort": 12798 } diff --git a/plugins/workiq/.mcp.json b/plugins/workiq/.mcp.json index fc40ad9..838b0c1 100644 --- a/plugins/workiq/.mcp.json +++ b/plugins/workiq/.mcp.json @@ -5,6 +5,7 @@ "url": "https://workiq.svc.cloud.microsoft/mcp", "oauthClientId": "ba081686-5d24-4bc6-a0d6-d034ecffed87", "oauthPublicClient": true, + "timeout": 300000, "auth": { "redirectPort": 12798 }