From c43784cd78b03106073fcf85976533195763b00f Mon Sep 17 00:00:00 2001 From: William Viana Date: Sun, 5 Apr 2026 09:33:29 -0700 Subject: [PATCH] fix: extend timeout for schematic query commands on large files Add list_schematic_nets, list_schematic_labels, and get_schematic_view to the longRunningCommands list so they use the 10-minute timeout instead of the default 30 seconds. These commands regularly exceed the 30s limit on larger schematic files. --- src/server.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/server.ts b/src/server.ts index 708e607..8d7deb0 100644 --- a/src/server.ts +++ b/src/server.ts @@ -522,6 +522,9 @@ export class KiCADMcpServer { "export_pdf", "export_3d", "sync_schematic_to_board", + "list_schematic_nets", + "list_schematic_labels", + "get_schematic_view", ]; if (longRunningCommands.includes(command)) { commandTimeout = 600000; // 10 minutes for long operations