Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/docs/v2/configuration/browser.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
14 changes: 7 additions & 7 deletions packages/docs/v2/integrations/mcp/configuration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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 <contextId>` | Specify a Browserbase Context ID to use |
| `--persist [boolean]` | Whether to persist the Browserbase context (default: true) |
Expand Down Expand Up @@ -157,21 +157,21 @@ Enable Browserbase proxies for IP rotation and geo-location testing.
```
</Tab>

<Tab title="Advanced Stealth">
Enable advanced anti-detection features for enhanced stealth browsing.
<Tab title="Verified">
Enable Browserbase Verified Identity for enhanced anti-detection during browsing.

<Panel>
[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.
</Panel>

```json
{
"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",
Expand Down Expand Up @@ -400,7 +400,7 @@ Configure custom host and port for SHTTP transport.

<Accordion title="Security - What security measures should I implement?">
- 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
</Accordion>
Expand Down
4 changes: 2 additions & 2 deletions packages/docs/v2/integrations/mcp/setup.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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"` |

<Warning>
Boolean query values must be exact strings: `"true"` or `"false"`.
Expand Down Expand Up @@ -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 <contextId>` | Specify a Browserbase Context ID to use |
| `--persist [boolean]` | Whether to persist the Browserbase context (default: true) |
Expand Down
2 changes: 1 addition & 1 deletion packages/docs/v3/configuration/browser.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
14 changes: 7 additions & 7 deletions packages/docs/v3/integrations/mcp/configuration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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 <contextId>` | Specify a Browserbase Context ID to use |
| `--persist [boolean]` | Whether to persist the Browserbase context (default: true) |
Expand Down Expand Up @@ -149,21 +149,21 @@ Enable Browserbase proxies for IP rotation and geo-location testing.
```
</Tab>

<Tab title="Advanced Stealth">
Enable advanced anti-detection features for enhanced stealth browsing.
<Tab title="Verified">
Enable Browserbase Verified Identity for enhanced anti-detection during browsing.

<Panel>
[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.
</Panel>

```json
{
"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"
Expand Down Expand Up @@ -337,7 +337,7 @@ Configure custom host and port for SHTTP transport.

<Accordion title="Security - What security measures should I implement?">
- 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
</Accordion>
Expand Down
4 changes: 2 additions & 2 deletions packages/docs/v3/integrations/mcp/setup.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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"` |

<Warning>
Boolean query values must be exact strings: `"true"` or `"false"`.
Expand Down Expand Up @@ -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 <contextId>` | Specify a Browserbase Context ID to use |
| `--persist [boolean]` | Whether to persist the Browserbase context (default: true) |
Expand Down
Loading