diff --git a/packages/docs/v2/configuration/browser.mdx b/packages/docs/v2/configuration/browser.mdx index 18316f0e0..a925eac4b 100644 --- a/packages/docs/v2/configuration/browser.mdx +++ b/packages/docs/v2/configuration/browser.mdx @@ -120,7 +120,7 @@ stagehand = Stagehand( timeout: 3600, // 1 hour session timeout keepAlive: true, // Available on Startup plan browserSettings: { - advancedStealth: false, // this is a Scale Plan feature - reach out to support@browserbase.com to enable + verified: false, // this is a Scale Plan feature - reach out to support@browserbase.com to enable blockAds: true, solveCaptchas: true, recordSession: false, diff --git a/packages/docs/v2/integrations/mcp/configuration.mdx b/packages/docs/v2/integrations/mcp/configuration.mdx index 5c175504c..d338f47ef 100644 --- a/packages/docs/v2/integrations/mcp/configuration.mdx +++ b/packages/docs/v2/integrations/mcp/configuration.mdx @@ -34,7 +34,7 @@ Your Browserbase project ID | Flag | Description | |------|-------------| | `--proxies` | Enable Browserbase proxies for the session | -| `--advancedStealth` | Enable Browserbase Advanced Stealth (Scale Plan only) | +| `--verified` | Enable Browserbase Verified Identity (Scale Plan only) | | `--keepAlive` | Enable Browserbase Keep Alive Session | | `--contextId ` | Specify a Browserbase Context ID to use | | `--persist [boolean]` | Whether to persist the Browserbase context (default: true) | @@ -157,13 +157,13 @@ Enable Browserbase proxies for IP rotation and geo-location testing. ``` - -Enable advanced anti-detection features for enhanced stealth browsing. + +Enable Browserbase Verified Identity for enhanced anti-detection during browsing. -[Learn more about Advanced Stealth](https://docs.browserbase.com/features/stealth-mode#advanced-stealth-mode) +[Learn more about Verified Identity](https://docs.browserbase.com/features/stealth-mode#advanced-stealth-mode) -**Note:** Advanced Stealth is only available for Scale Plan users. +**Note:** Verified Identity is only available for Scale Plan users. The previous `--advancedStealth` flag is still accepted as a deprecated alias. ```json @@ -171,7 +171,7 @@ Enable advanced anti-detection features for enhanced stealth browsing. "mcpServers": { "browserbase": { "command": "npx", - "args": ["@browserbasehq/mcp", "--advancedStealth"], + "args": ["@browserbasehq/mcp", "--verified"], "env": { "BROWSERBASE_API_KEY": "your_api_key", "BROWSERBASE_PROJECT_ID": "your_project_id", @@ -400,7 +400,7 @@ Configure custom host and port for SHTTP transport. - Store API keys securely in environment variables -- Use Advanced Stealth for sensitive operations +- Use Verified Identity for sensitive operations - Implement proper session management - Rotate cookies and contexts regularly diff --git a/packages/docs/v2/integrations/mcp/setup.mdx b/packages/docs/v2/integrations/mcp/setup.mdx index e0478e06e..010211e50 100644 --- a/packages/docs/v2/integrations/mcp/setup.mdx +++ b/packages/docs/v2/integrations/mcp/setup.mdx @@ -64,7 +64,7 @@ Pass your Browserbase API key as an HTTP authorization header: `Authorization: B | `modelApiKey` | string | Required when `modelName` is non-default | | `keepAlive` | boolean string | `"true"` or `"false"` | | `proxies` | boolean string | `"true"` or `"false"` | -| `advancedStealth` | boolean string | `"true"` or `"false"` | +| `verified` | boolean string | `"true"` or `"false"` | Boolean query values must be exact strings: `"true"` or `"false"`. @@ -129,7 +129,7 @@ Command-line flags are only available when running the server locally (`npx @bro | Flag | Description | |------|-------------| | `--proxies` | Enable Browserbase proxies for the session | -| `--advancedStealth` | Enable Browserbase Advanced Stealth (Scale Plan only) | +| `--verified` | Enable Browserbase Verified Identity (Scale Plan only) | | `--keepAlive` | Enable Browserbase Keep Alive Session | | `--contextId ` | Specify a Browserbase Context ID to use | | `--persist [boolean]` | Whether to persist the Browserbase context (default: true) | diff --git a/packages/docs/v3/configuration/browser.mdx b/packages/docs/v3/configuration/browser.mdx index 180ab50fb..4f9054525 100644 --- a/packages/docs/v3/configuration/browser.mdx +++ b/packages/docs/v3/configuration/browser.mdx @@ -136,7 +136,7 @@ const stagehand = new Stagehand({ timeout: 3600, // 1 hour session timeout keepAlive: true, // Available on Startup plan browserSettings: { - advancedStealth: false, // this is a Scale Plan feature - reach out to support@browserbase.com to enable + verified: false, // this is a Scale Plan feature - reach out to support@browserbase.com to enable blockAds: true, solveCaptchas: true, recordSession: false, diff --git a/packages/docs/v3/integrations/mcp/configuration.mdx b/packages/docs/v3/integrations/mcp/configuration.mdx index b972f9664..02b9803d1 100644 --- a/packages/docs/v3/integrations/mcp/configuration.mdx +++ b/packages/docs/v3/integrations/mcp/configuration.mdx @@ -31,7 +31,7 @@ Your Browserbase API key for authentication | Flag | Description | |------|-------------| | `--proxies` | Enable Browserbase proxies for the session | -| `--advancedStealth` | Enable Browserbase Advanced Stealth (Scale Plan only) | +| `--verified` | Enable Browserbase Verified Identity (Scale Plan only) | | `--keepAlive` | Enable Browserbase Keep Alive Session | | `--contextId ` | Specify a Browserbase Context ID to use | | `--persist [boolean]` | Whether to persist the Browserbase context (default: true) | @@ -149,13 +149,13 @@ Enable Browserbase proxies for IP rotation and geo-location testing. ``` - -Enable advanced anti-detection features for enhanced stealth browsing. + +Enable Browserbase Verified Identity for enhanced anti-detection during browsing. -[Learn more about Advanced Stealth](https://docs.browserbase.com/features/stealth-mode#advanced-stealth-mode) +[Learn more about Verified Identity](https://docs.browserbase.com/features/stealth-mode#advanced-stealth-mode) -**Note:** Advanced Stealth is only available for Scale Plan users. +**Note:** Verified Identity is only available for Scale Plan users. The previous `--advancedStealth` flag is still accepted as a deprecated alias. ```json @@ -163,7 +163,7 @@ Enable advanced anti-detection features for enhanced stealth browsing. "mcpServers": { "browserbase": { "command": "npx", - "args": ["@browserbasehq/mcp", "--advancedStealth"], + "args": ["@browserbasehq/mcp", "--verified"], "env": { "BROWSERBASE_API_KEY": "your_api_key", "GEMINI_API_KEY": "your_gemini_api_key" @@ -337,7 +337,7 @@ Configure custom host and port for SHTTP transport. - Store API keys securely in environment variables -- Use Advanced Stealth for sensitive operations +- Use Verified Identity for sensitive operations - Implement proper session management - Rotate cookies and contexts regularly diff --git a/packages/docs/v3/integrations/mcp/setup.mdx b/packages/docs/v3/integrations/mcp/setup.mdx index a7baee129..dd0621014 100644 --- a/packages/docs/v3/integrations/mcp/setup.mdx +++ b/packages/docs/v3/integrations/mcp/setup.mdx @@ -67,7 +67,7 @@ Pass your Browserbase API key as an HTTP authorization header: `Authorization: B | `modelApiKey` | string | Required when `modelName` is non-default | | `keepAlive` | boolean string | `"true"` or `"false"` | | `proxies` | boolean string | `"true"` or `"false"` | -| `advancedStealth` | boolean string | `"true"` or `"false"` | +| `verified` | boolean string | `"true"` or `"false"` | Boolean query values must be exact strings: `"true"` or `"false"`. @@ -134,7 +134,7 @@ Command-line flags are only available when running the server locally (`npx @bro | Flag | Description | |------|-------------| | `--proxies` | Enable Browserbase proxies for the session | -| `--advancedStealth` | Enable Browserbase Advanced Stealth (Scale Plan only) | +| `--verified` | Enable Browserbase Verified Identity (Scale Plan only) | | `--keepAlive` | Enable Browserbase Keep Alive Session | | `--contextId ` | Specify a Browserbase Context ID to use | | `--persist [boolean]` | Whether to persist the Browserbase context (default: true) |