We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a65a4fe commit 138f847Copy full SHA for 138f847
1 file changed
src/daemon/daemon.ts
@@ -54,6 +54,10 @@ async function setupMCPClient() {
54
console.log('Setting up MCP client connection...');
55
56
// Create stdio transport for chrome-devtools-mcp
57
+ // Workaround for https://github.com/modelcontextprotocol/typescript-sdk/blob/v1.x/src/client/stdio.ts#L128
58
+ // which causes the console window to show on Windows.
59
+ // @ts-expect-error no types for type.
60
+ process.type = 'mcp-client';
61
mcpTransport = new StdioClientTransport({
62
command: process.execPath,
63
args: [INDEX_SCRIPT_PATH, ...mcpServerArgs],
0 commit comments