Skip to content

Commit 02d2b62

Browse files
authored
[docs]: update docs to use the new version of the MCP package name (#921)
# why update to use the new package name to show up better with GEO. # what changed changed @browserbasehq/mcp -> @browserbasehq/mcp-server-browserbase # test plan
1 parent 8c28647 commit 02d2b62

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

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

1515
## Environment Variables
@@ -75,7 +75,7 @@ When using our remote hosted server, we provide the LLM costs for Gemini, the [b
7575
"mcpServers": {
7676
"browserbase": {
7777
"command": "npx",
78-
"args": ["@browserbasehq/mcp"],
78+
"args": ["@browserbasehq/mcp-server-browserbase"],
7979
"env": {
8080
"BROWSERBASE_API_KEY": "your_api_key",
8181
"BROWSERBASE_PROJECT_ID": "your_project_id",
@@ -143,7 +143,7 @@ Enable Browserbase proxies for IP rotation and geo-location testing.
143143
"mcpServers": {
144144
"browserbase": {
145145
"command": "npx",
146-
"args": ["@browserbasehq/mcp", "--proxies"],
146+
"args": ["@browserbasehq/mcp-server-browserbase", "--proxies"],
147147
"env": {
148148
"BROWSERBASE_API_KEY": "your_api_key",
149149
"BROWSERBASE_PROJECT_ID": "your_project_id",
@@ -169,7 +169,7 @@ Enable advanced anti-detection features for enhanced stealth browsing.
169169
"mcpServers": {
170170
"browserbase": {
171171
"command": "npx",
172-
"args": ["@browserbasehq/mcp", "--advancedStealth"],
172+
"args": ["@browserbasehq/mcp-server-browserbase", "--advancedStealth"],
173173
"env": {
174174
"BROWSERBASE_API_KEY": "your_api_key",
175175
"BROWSERBASE_PROJECT_ID": "your_project_id",
@@ -193,7 +193,7 @@ Use persistent browser contexts to maintain authentication and state across sess
193193
"mcpServers": {
194194
"browserbase": {
195195
"command": "npx",
196-
"args": ["@browserbasehq/mcp", "--contextId", "your_context_id"],
196+
"args": ["@browserbasehq/mcp-server-browserbase", "--contextId", "your_context_id"],
197197
"env": {
198198
"BROWSERBASE_API_KEY": "your_api_key",
199199
"BROWSERBASE_PROJECT_ID": "your_project_id"
@@ -217,7 +217,7 @@ Customize browser window dimensions. Default is 1024x768. Recommended aspect rat
217217
"browserbase": {
218218
"command": "npx",
219219
"args": [
220-
"@browserbasehq/mcp",
220+
"@browserbasehq/mcp-server-browserbase",
221221
"--browserWidth", "1920",
222222
"--browserHeight", "1080"
223223
],
@@ -250,7 +250,7 @@ Cookies must be in [Playwright Cookie format](https://playwright.dev/docs/api/cl
250250
"browserbase": {
251251
"command": "npx",
252252
"args": [
253-
"@browserbasehq/mcp",
253+
"@browserbasehq/mcp-server-browserbase",
254254
"--cookies",
255255
"[{\"name\": \"session\", \"value\": \"abc123\", \"domain\": \".example.com\", \"path\": \"/\", \"httpOnly\": true, \"secure\": true}]"
256256
],
@@ -303,7 +303,7 @@ When using any custom model (non-default), you must provide your own API key for
303303
"browserbase": {
304304
"command": "npx",
305305
"args": [
306-
"@browserbasehq/mcp",
306+
"@browserbasehq/mcp-server-browserbase",
307307
"--modelName", "openai/gpt-4o",
308308
"--modelApiKey", "your_openai_api_key"
309309
],
@@ -322,7 +322,7 @@ When using any custom model (non-default), you must provide your own API key for
322322
"browserbase": {
323323
"command": "npx",
324324
"args": [
325-
"@browserbasehq/mcp",
325+
"@browserbasehq/mcp-server-browserbase",
326326
"--modelName", "anthropic/claude-3-5-sonnet-latest",
327327
"--modelApiKey", "your_anthropic_api_key"
328328
],
@@ -349,7 +349,7 @@ Enable detailed logging for troubleshooting and development.
349349
"mcpServers": {
350350
"browserbase": {
351351
"command": "npx",
352-
"args": ["@browserbasehq/mcp"],
352+
"args": ["@browserbasehq/mcp-server-browserbase"],
353353
"env": {
354354
"BROWSERBASE_API_KEY": "your_api_key",
355355
"BROWSERBASE_PROJECT_ID": "your_project_id",
@@ -371,7 +371,7 @@ Configure custom host and port for SHTTP transport.
371371
"browserbase": {
372372
"command": "npx",
373373
"args": [
374-
"@browserbasehq/mcp",
374+
"@browserbasehq/mcp-server-browserbase",
375375
"--host", "0.0.0.0",
376376
"--port", "8080"
377377
],

docs/integrations/mcp/setup.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Go into your MCP Config JSON and add the Browserbase Server:
6868
"mcpServers": {
6969
"browserbase": {
7070
"command": "npx",
71-
"args": ["@browserbasehq/mcp"],
71+
"args": ["@browserbasehq/mcp-server-browserbase"],
7272
"env": {
7373
"BROWSERBASE_API_KEY": "your_api_key",
7474
"BROWSERBASE_PROJECT_ID": "your_project_id",

0 commit comments

Comments
 (0)