Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
14 changes: 14 additions & 0 deletions .changeset/rename-advanced-stealth-to-verified.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
"@browserbasehq/mcp": major
---

Rename `advancedStealth` to `verified` to match the renamed Browserbase API field.

**Breaking changes:**

- CLI flag `--advancedStealth` renamed to `--verified`
- Config field `advancedStealth` renamed to `verified` (in `config.d.ts` / Smithery `configSchema`)

Migration: replace `--advancedStealth` with `--verified` in your CLI invocations, and rename the `advancedStealth` field to `verified` in any config files or `configSchema` overrides.

Also bumps the minimum `@browserbasehq/stagehand` peer to `^3.3.0`, the version that introduced support for the Verified Identity setting.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ The Browserbase MCP server accepts the following command-line flags:
| Flag | Description |
| -------------------------- | --------------------------------------------------------------------------- |
| `--proxies` | Enable Browserbase proxies for the session |
| `--advancedStealth` | Enable Browserbase Advanced Stealth (Only for Scale Plan Users) |
| `--verified` | Enable Browserbase Verified Identity (Only for Scale Plan Users) |
| `--keepAlive` | Enable Browserbase Keep Alive Session |
| `--contextId <contextId>` | Specify a Browserbase Context ID to use |
| `--persist` | Whether to persist the Browserbase context (default: true) |
Expand Down
4 changes: 2 additions & 2 deletions config.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ export type Config = {
*/
proxies?: boolean;
/**
* Use advanced stealth mode. Only available to Browserbase Scale Plan users.
* Use Browserbase Verified Identity (formerly Advanced Stealth). Only available to Browserbase Scale Plan users.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same thing

*
* @default false
*/
advancedStealth?: boolean;
verified?: boolean;
/**
* Whether or not to keep the Browserbase session alive
*
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
},
"dependencies": {
"@browserbasehq/sdk": "^2.6.0",
"@browserbasehq/stagehand": "^3.0.8",
"@browserbasehq/stagehand": "^3.3.0",
"@modelcontextprotocol/sdk": "^1.13.1",
"commander": "^14.0.0",
"dotenv": "^16.4.6",
Expand Down
Loading
Loading