Skip to content

Commit 1e196b3

Browse files
bbclankerbb-agentshrey150
authored
[CE-955] Rename advancedStealth to verified (#179)
* [CE-955] Rename advancedStealth to verified * chore: regenerate pnpm lockfile * docs: update verified identity copy * fix: preserve advancedStealth compatibility * docs: simplify verified identity descriptions --------- Co-authored-by: bb-agent <bb-agent@browserbase.com> Co-authored-by: Shrey Pandya <shrey@browserbase.com>
1 parent f6bd321 commit 1e196b3

10 files changed

Lines changed: 327 additions & 75 deletions
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
"@browserbasehq/mcp": minor
3+
---
4+
5+
Add `verified` as the canonical Browserbase Verified Identity setting while preserving `advancedStealth` as a deprecated alias.
6+
7+
**Changes:**
8+
9+
- CLI flag `--verified` added; `--advancedStealth` remains supported as a deprecated alias
10+
- Config field `verified` added; `advancedStealth` remains supported as a deprecated alias in `config.d.ts` and Smithery `configSchema`
11+
12+
Migration: prefer `--verified` in CLI invocations and `verified` in config files or `configSchema` overrides.
13+
14+
Also bumps the minimum `@browserbasehq/stagehand` peer to `^3.3.0`, the version that introduced support for the Verified Identity setting.

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,8 @@ The Browserbase MCP server accepts the following command-line flags:
159159
| Flag | Description |
160160
| -------------------------- | --------------------------------------------------------------------------- |
161161
| `--proxies` | Enable Browserbase proxies for the session |
162-
| `--advancedStealth` | Enable Browserbase Advanced Stealth (Only for Scale Plan Users) |
162+
| `--verified` | Enable Browserbase Verified Identity (Only for Scale Plan Users) |
163+
| `--advancedStealth` | Deprecated alias for `--verified` |
163164
| `--keepAlive` | Enable Browserbase Keep Alive Session |
164165
| `--contextId <contextId>` | Specify a Browserbase Context ID to use |
165166
| `--persist` | Whether to persist the Browserbase context (default: true) |

config.d.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,13 @@ export type Config = {
1717
*/
1818
proxies?: boolean;
1919
/**
20-
* Use advanced stealth mode. Only available to Browserbase Scale Plan users.
20+
* Use Browserbase Verified Identity. Only available to Browserbase Scale Plan users.
21+
*
22+
* @default false
23+
*/
24+
verified?: boolean;
25+
/**
26+
* Deprecated alias for verified.
2127
*
2228
* @default false
2329
*/

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
},
5151
"dependencies": {
5252
"@browserbasehq/sdk": "^2.6.0",
53-
"@browserbasehq/stagehand": "^3.0.8",
53+
"@browserbasehq/stagehand": "^3.3.0",
5454
"@modelcontextprotocol/sdk": "^1.13.1",
5555
"commander": "^14.0.0",
5656
"dotenv": "^16.4.6",

0 commit comments

Comments
 (0)