Skip to content

Commit ba70cda

Browse files
shrey150claude
andauthored
[STG-1769] docs: rename MCP package to @browserbasehq/mcp (browserbase#1952)
## Summary - Renamed `@browserbasehq/mcp-server-browserbase` to `@browserbasehq/mcp` in v2 and v3 MCP docs (setup and configuration pages) ## Linear [STG-1769](https://linear.app/browserbase/issue/STG-1769/rename-mcp-package-in-docs) ## Test plan - [ ] Verify v2 docs render correctly with new package name - [ ] Verify v3 docs render correctly with new package name 🤖 Generated with [Claude Code](https://claude.com/claude-code) <!-- This is an auto-generated description by cubic. --> --- ## Summary by cubic Renamed the MCP package in v2 and v3 docs from `@browserbasehq/mcp-server-browserbase` to `@browserbasehq/mcp`, updating setup and configuration examples and CLI notes. Also removed an unnecessary changeset since this is docs-only, aligning with STG-1769. <sup>Written for commit 501df49. Summary will update on new commits. <a href="https://cubic.dev/pr/browserbase/stagehand/pull/1952">Review in cubic</a></sup> <!-- End of auto-generated description by cubic. --> --------- Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent d2262f6 commit ba70cda

4 files changed

Lines changed: 24 additions & 24 deletions

File tree

packages/docs/v2/integrations/mcp/configuration.mdx

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description: "Configure your browser automation with command-line flags, environ
99
The Browserbase MCP server supports extensive configuration options through command-line flags and environment variables. Configure browser behavior, proxy settings, stealth modes, model selection, and more to customize your browser automation workflows.
1010

1111
<Note>
12-
Command-line flags are only available when running the server locally (`npx @browserbasehq/mcp-server-browserbase` with flags or local development setup).
12+
Command-line flags are only available when running the server locally (`npx @browserbasehq/mcp` with flags or local development setup).
1313
</Note>
1414

1515
## Environment Variables
@@ -77,7 +77,7 @@ When using our remote hosted server, we provide the LLM costs for Gemini, the [b
7777
"mcpServers": {
7878
"browserbase": {
7979
"command": "npx",
80-
"args": ["@browserbasehq/mcp-server-browserbase"],
80+
"args": ["@browserbasehq/mcp"],
8181
"env": {
8282
"BROWSERBASE_API_KEY": "your_api_key",
8383
"BROWSERBASE_PROJECT_ID": "your_project_id",
@@ -145,7 +145,7 @@ Enable Browserbase proxies for IP rotation and geo-location testing.
145145
"mcpServers": {
146146
"browserbase": {
147147
"command": "npx",
148-
"args": ["@browserbasehq/mcp-server-browserbase", "--proxies"],
148+
"args": ["@browserbasehq/mcp", "--proxies"],
149149
"env": {
150150
"BROWSERBASE_API_KEY": "your_api_key",
151151
"BROWSERBASE_PROJECT_ID": "your_project_id",
@@ -171,7 +171,7 @@ Enable advanced anti-detection features for enhanced stealth browsing.
171171
"mcpServers": {
172172
"browserbase": {
173173
"command": "npx",
174-
"args": ["@browserbasehq/mcp-server-browserbase", "--advancedStealth"],
174+
"args": ["@browserbasehq/mcp", "--advancedStealth"],
175175
"env": {
176176
"BROWSERBASE_API_KEY": "your_api_key",
177177
"BROWSERBASE_PROJECT_ID": "your_project_id",
@@ -195,7 +195,7 @@ Use persistent browser contexts to maintain authentication and state across sess
195195
"mcpServers": {
196196
"browserbase": {
197197
"command": "npx",
198-
"args": ["@browserbasehq/mcp-server-browserbase", "--contextId", "your_context_id"],
198+
"args": ["@browserbasehq/mcp", "--contextId", "your_context_id"],
199199
"env": {
200200
"BROWSERBASE_API_KEY": "your_api_key",
201201
"BROWSERBASE_PROJECT_ID": "your_project_id"
@@ -219,7 +219,7 @@ Customize browser window dimensions. Default is 1024x768. Recommended aspect rat
219219
"browserbase": {
220220
"command": "npx",
221221
"args": [
222-
"@browserbasehq/mcp-server-browserbase",
222+
"@browserbasehq/mcp",
223223
"--browserWidth", "1920",
224224
"--browserHeight", "1080"
225225
],
@@ -252,7 +252,7 @@ Cookies must be in [Playwright Cookie format](https://playwright.dev/docs/api/cl
252252
"browserbase": {
253253
"command": "npx",
254254
"args": [
255-
"@browserbasehq/mcp-server-browserbase",
255+
"@browserbasehq/mcp",
256256
"--cookies",
257257
"[{\"name\": \"session\", \"value\": \"abc123\", \"domain\": \".example.com\", \"path\": \"/\", \"httpOnly\": true, \"secure\": true}]"
258258
],
@@ -305,7 +305,7 @@ When using any custom model (non-default), you must provide your own API key for
305305
"browserbase": {
306306
"command": "npx",
307307
"args": [
308-
"@browserbasehq/mcp-server-browserbase",
308+
"@browserbasehq/mcp",
309309
"--modelName", "openai/gpt-4o",
310310
"--modelApiKey", "your_openai_api_key"
311311
],
@@ -324,7 +324,7 @@ When using any custom model (non-default), you must provide your own API key for
324324
"browserbase": {
325325
"command": "npx",
326326
"args": [
327-
"@browserbasehq/mcp-server-browserbase",
327+
"@browserbasehq/mcp",
328328
"--modelName", "anthropic/claude-sonnet-4-6",
329329
"--modelApiKey", "your_anthropic_api_key"
330330
],
@@ -351,7 +351,7 @@ Enable detailed logging for troubleshooting and development.
351351
"mcpServers": {
352352
"browserbase": {
353353
"command": "npx",
354-
"args": ["@browserbasehq/mcp-server-browserbase"],
354+
"args": ["@browserbasehq/mcp"],
355355
"env": {
356356
"BROWSERBASE_API_KEY": "your_api_key",
357357
"BROWSERBASE_PROJECT_ID": "your_project_id",
@@ -373,7 +373,7 @@ Configure custom host and port for SHTTP transport.
373373
"browserbase": {
374374
"command": "npx",
375375
"args": [
376-
"@browserbasehq/mcp-server-browserbase",
376+
"@browserbasehq/mcp",
377377
"--host", "0.0.0.0",
378378
"--port", "8080"
379379
],

packages/docs/v2/integrations/mcp/setup.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ Close the active Browserbase session for the current MCP transport session.
117117
## Local Command-Line Flags
118118

119119
<Note>
120-
Command-line flags are only available when running the server locally (`npx @browserbasehq/mcp-server-browserbase` with flags or local development setup).
120+
Command-line flags are only available when running the server locally (`npx @browserbasehq/mcp` with flags or local development setup).
121121
</Note>
122122

123123
| Flag | Description |
@@ -183,7 +183,7 @@ Go into your MCP Config JSON and add the Browserbase Server:
183183
"mcpServers": {
184184
"browserbase": {
185185
"command": "npx",
186-
"args": ["@browserbasehq/mcp-server-browserbase"],
186+
"args": ["@browserbasehq/mcp"],
187187
"env": {
188188
"BROWSERBASE_API_KEY": "your_api_key",
189189
"GEMINI_API_KEY": "your_gemini_api_key"

packages/docs/v3/integrations/mcp/configuration.mdx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import { V3Banner } from '/snippets/v3-banner.mdx';
1313
The Browserbase MCP server supports extensive configuration options through command-line flags and environment variables. Configure browser behavior, proxy settings, stealth modes, model selection, and more to customize your browser automation workflows.
1414

1515
<Note>
16-
Command-line flags are only available when running the server locally (`npx @browserbasehq/mcp-server-browserbase` with flags or local development setup).
16+
Command-line flags are only available when running the server locally (`npx @browserbasehq/mcp` with flags or local development setup).
1717
</Note>
1818

1919
## Environment Variables
@@ -80,7 +80,7 @@ When using our remote hosted server, we provide the LLM costs for Gemini, the [b
8080
"mcpServers": {
8181
"browserbase": {
8282
"command": "npx",
83-
"args": ["@browserbasehq/mcp-server-browserbase"],
83+
"args": ["@browserbasehq/mcp"],
8484
"env": {
8585
"BROWSERBASE_API_KEY": "your_api_key",
8686
"BROWSERBASE_PROJECT_ID": "your_project_id",
@@ -148,7 +148,7 @@ Enable Browserbase proxies for IP rotation and geo-location testing.
148148
"mcpServers": {
149149
"browserbase": {
150150
"command": "npx",
151-
"args": ["@browserbasehq/mcp-server-browserbase", "--proxies"],
151+
"args": ["@browserbasehq/mcp", "--proxies"],
152152
"env": {
153153
"BROWSERBASE_API_KEY": "your_api_key",
154154
"BROWSERBASE_PROJECT_ID": "your_project_id",
@@ -174,7 +174,7 @@ Enable advanced anti-detection features for enhanced stealth browsing.
174174
"mcpServers": {
175175
"browserbase": {
176176
"command": "npx",
177-
"args": ["@browserbasehq/mcp-server-browserbase", "--advancedStealth"],
177+
"args": ["@browserbasehq/mcp", "--advancedStealth"],
178178
"env": {
179179
"BROWSERBASE_API_KEY": "your_api_key",
180180
"BROWSERBASE_PROJECT_ID": "your_project_id",
@@ -198,7 +198,7 @@ Use persistent browser contexts to maintain authentication and state across sess
198198
"mcpServers": {
199199
"browserbase": {
200200
"command": "npx",
201-
"args": ["@browserbasehq/mcp-server-browserbase", "--contextId", "your_context_id"],
201+
"args": ["@browserbasehq/mcp", "--contextId", "your_context_id"],
202202
"env": {
203203
"BROWSERBASE_API_KEY": "your_api_key",
204204
"BROWSERBASE_PROJECT_ID": "your_project_id"
@@ -222,7 +222,7 @@ Customize browser window dimensions. Default is 1288x711. Recommended aspect rat
222222
"browserbase": {
223223
"command": "npx",
224224
"args": [
225-
"@browserbasehq/mcp-server-browserbase",
225+
"@browserbasehq/mcp",
226226
"--browserWidth", "1920",
227227
"--browserHeight", "1080"
228228
],
@@ -280,7 +280,7 @@ When using any custom model (non-default), you must provide your own API key for
280280
"browserbase": {
281281
"command": "npx",
282282
"args": [
283-
"@browserbasehq/mcp-server-browserbase",
283+
"@browserbasehq/mcp",
284284
"--modelName", "gpt-4o",
285285
"--modelApiKey", "your_openai_api_key"
286286
],
@@ -299,7 +299,7 @@ When using any custom model (non-default), you must provide your own API key for
299299
"browserbase": {
300300
"command": "npx",
301301
"args": [
302-
"@browserbasehq/mcp-server-browserbase",
302+
"@browserbasehq/mcp",
303303
"--modelName", "claude-sonnet-4-6",
304304
"--modelApiKey", "your_anthropic_api_key"
305305
],
@@ -327,7 +327,7 @@ Configure custom host and port for SHTTP transport.
327327
"browserbase": {
328328
"command": "npx",
329329
"args": [
330-
"@browserbasehq/mcp-server-browserbase",
330+
"@browserbasehq/mcp",
331331
"--host", "0.0.0.0",
332332
"--port", "8080"
333333
],

packages/docs/v3/integrations/mcp/setup.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ Close the active Browserbase session for the current MCP transport session.
120120
## Local Command-Line Flags
121121

122122
<Note>
123-
Command-line flags are only available when running the server locally (`npx @browserbasehq/mcp-server-browserbase` with flags or local development setup).
123+
Command-line flags are only available when running the server locally (`npx @browserbasehq/mcp` with flags or local development setup).
124124
</Note>
125125

126126
| Flag | Description |
@@ -186,7 +186,7 @@ Go into your MCP Config JSON and add the Browserbase Server:
186186
"mcpServers": {
187187
"browserbase": {
188188
"command": "npx",
189-
"args": ["@browserbasehq/mcp-server-browserbase"],
189+
"args": ["@browserbasehq/mcp"],
190190
"env": {
191191
"BROWSERBASE_API_KEY": "your_api_key",
192192
"GEMINI_API_KEY": "your_gemini_api_key"

0 commit comments

Comments
 (0)