Skip to content
Merged
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
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": minor
---

Add `verified` as the canonical Browserbase Verified Identity setting while preserving `advancedStealth` as a deprecated alias.

**Changes:**

- CLI flag `--verified` added; `--advancedStealth` remains supported as a deprecated alias
- Config field `verified` added; `advancedStealth` remains supported as a deprecated alias in `config.d.ts` and Smithery `configSchema`

Migration: prefer `--verified` in CLI invocations and `verified` in 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.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,8 @@ 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) |
| `--advancedStealth` | Deprecated alias for `--verified` |
| `--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
8 changes: 7 additions & 1 deletion config.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,13 @@ export type Config = {
*/
proxies?: boolean;
/**
* Use advanced stealth mode. Only available to Browserbase Scale Plan users.
* Use Browserbase Verified Identity. Only available to Browserbase Scale Plan users.
*
* @default false
*/
verified?: boolean;
/**
* Deprecated alias for verified.
*
* @default false
*/
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