Skip to content

[chore]: change package name and update readme #100

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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
18 changes: 11 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ Go into your MCP Config JSON and add the Browserbase Server:
"mcpServers": {
"browserbase": {
"command": "npx",
"args": ["@browserbasehq/mcp"],
"args": ["@browserbasehq/mcp-server-browserbase"],
"env": {
"BROWSERBASE_API_KEY": "",
"BROWSERBASE_PROJECT_ID": "",
Expand Down Expand Up @@ -154,7 +154,7 @@ These flags can be passed directly to the CLI or configured in your MCP configur

### NOTE:

Currently, these flags can only be used with the local server (npx @browserbasehq/mcp).
Currently, these flags can only be used with the local server (npx @browserbasehq/mcp-server-browserbase).

## Configuration Examples

Expand All @@ -169,7 +169,7 @@ To use proxies, set the --proxies flag in your MCP Config:
"mcpServers": {
"browserbase": {
"command": "npx",
"args": ["@browserbasehq/mcp", "--proxies"],
"args": ["@browserbasehq/mcp-server-browserbase", "--proxies"],
"env": {
"BROWSERBASE_API_KEY": "",
"BROWSERBASE_PROJECT_ID": "",
Expand All @@ -191,7 +191,7 @@ To use advanced stealth, set the --advancedStealth flag in your MCP Config:
"mcpServers": {
"browserbase": {
"command": "npx",
"args": ["@browserbasehq/mcp", "--advancedStealth"],
"args": ["@browserbasehq/mcp-server-browserbase", "--advancedStealth"],
"env": {
"BROWSERBASE_API_KEY": "",
"BROWSERBASE_PROJECT_ID": "",
Expand All @@ -213,7 +213,11 @@ To use contexts, set the --contextId flag in your MCP Config:
"mcpServers": {
"browserbase": {
"command": "npx",
"args": ["@browserbasehq/mcp", "--contextId", "<YOUR_CONTEXT_ID>"],
"args": [
"@browserbasehq/mcp-server-browserbase",
"--contextId",
"<YOUR_CONTEXT_ID>"
],
"env": {
"BROWSERBASE_API_KEY": "",
"BROWSERBASE_PROJECT_ID": "",
Expand All @@ -236,7 +240,7 @@ Here's how to use it for custom browser sizing. We recommend to stick with 16:9
"browserbase": {
"command": "npx",
"args": [
"@browserbasehq/mcp",
"@browserbasehq/mcp-server-browserbase",
"--browserHeight 1080",
"--browserWidth 1920"
],
Expand Down Expand Up @@ -264,7 +268,7 @@ Here's how to configure different models:
"browserbase": {
"command": "npx",
"args": [
"@browserbasehq/mcp",
"@browserbasehq/mcp-server-browserbase",
"--modelName",
"anthropic/claude-3-5-sonnet-latest",
"--modelApiKey",
Expand Down
5 changes: 3 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@browserbasehq/mcp",
"name": "@browserbasehq/mcp-server-browserbase",
"version": "2.0.0",
"description": "MCP server for AI web browser automation using Browserbase and Stagehand",
"license": "Apache-2.0",
Expand Down