From 4d13e72213a9ec9666ec31c32f3a7fa2168b6bff Mon Sep 17 00:00:00 2001 From: Ryan Malloy Date: Mon, 11 Aug 2025 04:55:45 -0600 Subject: [PATCH] feat: enable isolated mode by default for better session isolation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Set browser.isolated = true as default configuration - Ensures each MCP session gets its own isolated browser context - Prevents data sharing between different client sessions - Combined with headed mode for optimal user experience 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- src/config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/config.ts b/src/config.ts index 7495264..1c8440b 100644 --- a/src/config.ts +++ b/src/config.ts @@ -53,6 +53,7 @@ export type CLIOptions = { const defaultConfig: FullConfig = { browser: { browserName: 'chromium', + isolated: true, launchOptions: { channel: 'chrome', headless: false,