From 4eff11453d664d56ed4630943bd3c534908c71a6 Mon Sep 17 00:00:00 2001 From: Nikolay Vitkov Date: Wed, 1 Apr 2026 17:18:52 +0200 Subject: [PATCH] chore: remove workaround after SDK update --- src/daemon/daemon.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/daemon/daemon.ts b/src/daemon/daemon.ts index cde623745..18f6ebad0 100644 --- a/src/daemon/daemon.ts +++ b/src/daemon/daemon.ts @@ -55,10 +55,6 @@ async function setupMCPClient() { console.log('Setting up MCP client connection...'); // Create stdio transport for chrome-devtools-mcp - // Workaround for https://github.com/modelcontextprotocol/typescript-sdk/blob/v1.x/src/client/stdio.ts#L128 - // which causes the console window to show on Windows. - // @ts-expect-error no types for type. - process.type = 'mcp-client'; mcpTransport = new StdioClientTransport({ command: process.execPath, args: [INDEX_SCRIPT_PATH, ...mcpServerArgs],