From b1405ae446a5f8271b2400184293322d1285cc20 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Wed, 11 Feb 2026 12:47:22 +0000 Subject: [PATCH 1/4] Add Browserbase MCP server definition Official Browserbase MCP server for cloud browser automation using Stagehand. Uses @browserbasehq/mcp-server-browserbase npm package with stdio transport. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx --- servers/com.browserbase-mcp.json | 79 ++++++++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 servers/com.browserbase-mcp.json diff --git a/servers/com.browserbase-mcp.json b/servers/com.browserbase-mcp.json new file mode 100644 index 0000000..415c400 --- /dev/null +++ b/servers/com.browserbase-mcp.json @@ -0,0 +1,79 @@ +{ + "$schema": "../schemas/server-definition.schema.json", + "id": "com.browserbase-mcp", + "name": "Browserbase", + "alias": "browserbase", + "description": "Cloud browser automation using Browserbase and Stagehand. Navigate, click, extract data, and take screenshots in cloud-hosted browsers.", + "icon": "https://avatars.githubusercontent.com/u/158221360?v=4", + "schema_version": "2.1", + "categories": ["developer-tools", "cloud"], + "tags": ["browserbase", "browser", "automation", "stagehand", "scraping", "testing"], + + "transport": { + "type": "stdio", + "command": "npx", + "args": ["-y", "@browserbasehq/mcp-server-browserbase"], + "env": { + "BROWSERBASE_API_KEY": "${input:BROWSERBASE_API_KEY}", + "BROWSERBASE_PROJECT_ID": "${input:BROWSERBASE_PROJECT_ID}" + }, + "metadata": { + "inputs": [ + { + "id": "BROWSERBASE_API_KEY", + "label": "Browserbase API Key", + "description": "API key for your Browserbase account.", + "type": "password", + "required": true, + "secret": true, + "placeholder": "bb_live_xxxxxxxxxxxxxxxx", + "obtain": { + "url": "https://www.browserbase.com/", + "instructions": "1. Go to browserbase.com and create an account\n2. Navigate to Settings in the dashboard\n3. Copy your API key", + "button_label": "Get API Key" + } + }, + { + "id": "BROWSERBASE_PROJECT_ID", + "label": "Browserbase Project ID", + "description": "Your Browserbase project ID, found in the dashboard.", + "type": "text", + "required": true, + "secret": false, + "placeholder": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", + "obtain": { + "url": "https://www.browserbase.com/", + "instructions": "1. Log in to browserbase.com\n2. Open your project in the dashboard\n3. Copy the Project ID from the project settings", + "button_label": "Get Project ID" + } + } + ] + } + }, + + "auth": { + "type": "api_key", + "instructions": "Get your API key and Project ID at https://www.browserbase.com/" + }, + + "contributor": { + "name": "Browserbase", + "github": "browserbase", + "url": "https://www.browserbase.com" + }, + + "links": { + "repository": "https://github.com/browserbase/mcp-server-browserbase", + "homepage": "https://www.browserbase.com", + "documentation": "https://docs.browserbase.com/integrations/mcp/" + }, + + "platforms": ["all"], + + "capabilities": { + "tools": true, + "resources": false, + "prompts": false, + "read_only_mode": false + } +} From 10f68ffb5778bb64b9174572ef229cd1e96709bc Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 19:08:21 +0800 Subject: [PATCH 2/4] fix: update server definition (input type 'password' -> 'text' for BROWSERBASE_API_KEY) --- servers/com.browserbase-mcp.json | 31 ++++++++++++++++++++----------- 1 file changed, 20 insertions(+), 11 deletions(-) diff --git a/servers/com.browserbase-mcp.json b/servers/com.browserbase-mcp.json index 415c400..9379018 100644 --- a/servers/com.browserbase-mcp.json +++ b/servers/com.browserbase-mcp.json @@ -6,13 +6,25 @@ "description": "Cloud browser automation using Browserbase and Stagehand. Navigate, click, extract data, and take screenshots in cloud-hosted browsers.", "icon": "https://avatars.githubusercontent.com/u/158221360?v=4", "schema_version": "2.1", - "categories": ["developer-tools", "cloud"], - "tags": ["browserbase", "browser", "automation", "stagehand", "scraping", "testing"], - + "categories": [ + "developer-tools", + "cloud" + ], + "tags": [ + "browserbase", + "browser", + "automation", + "stagehand", + "scraping", + "testing" + ], "transport": { "type": "stdio", "command": "npx", - "args": ["-y", "@browserbasehq/mcp-server-browserbase"], + "args": [ + "-y", + "@browserbasehq/mcp-server-browserbase" + ], "env": { "BROWSERBASE_API_KEY": "${input:BROWSERBASE_API_KEY}", "BROWSERBASE_PROJECT_ID": "${input:BROWSERBASE_PROJECT_ID}" @@ -23,7 +35,7 @@ "id": "BROWSERBASE_API_KEY", "label": "Browserbase API Key", "description": "API key for your Browserbase account.", - "type": "password", + "type": "text", "required": true, "secret": true, "placeholder": "bb_live_xxxxxxxxxxxxxxxx", @@ -50,26 +62,23 @@ ] } }, - "auth": { "type": "api_key", "instructions": "Get your API key and Project ID at https://www.browserbase.com/" }, - "contributor": { "name": "Browserbase", "github": "browserbase", "url": "https://www.browserbase.com" }, - "links": { "repository": "https://github.com/browserbase/mcp-server-browserbase", "homepage": "https://www.browserbase.com", "documentation": "https://docs.browserbase.com/integrations/mcp/" }, - - "platforms": ["all"], - + "platforms": [ + "all" + ], "capabilities": { "tools": true, "resources": false, From 822c736eb47a23696a874136fee812ed0f202b58 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 19:22:22 +0800 Subject: [PATCH 3/4] fix: add optional GEMINI_API_KEY input (required by default Stagehand model) --- servers/com.browserbase-mcp.json | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/servers/com.browserbase-mcp.json b/servers/com.browserbase-mcp.json index 9379018..e2b8b91 100644 --- a/servers/com.browserbase-mcp.json +++ b/servers/com.browserbase-mcp.json @@ -27,7 +27,8 @@ ], "env": { "BROWSERBASE_API_KEY": "${input:BROWSERBASE_API_KEY}", - "BROWSERBASE_PROJECT_ID": "${input:BROWSERBASE_PROJECT_ID}" + "BROWSERBASE_PROJECT_ID": "${input:BROWSERBASE_PROJECT_ID}", + "GEMINI_API_KEY": "${input:GEMINI_API_KEY}" }, "metadata": { "inputs": [ @@ -58,6 +59,20 @@ "instructions": "1. Log in to browserbase.com\n2. Open your project in the dashboard\n3. Copy the Project ID from the project settings", "button_label": "Get Project ID" } + }, + { + "id": "GEMINI_API_KEY", + "label": "Gemini API Key", + "description": "Google Gemini API key. Required by default (Stagehand uses Gemini 2.0 Flash). Optional if using a custom model via --modelApiKey.", + "type": "text", + "required": false, + "secret": true, + "placeholder": "AIzaSy...", + "obtain": { + "url": "https://aistudio.google.com/apikey", + "instructions": "1. Go to Google AI Studio\n2. Click 'Get API key'\n3. Create a new API key or select an existing one\n4. Copy the key", + "button_label": "Get API Key" + } } ] } From 1f910ae5431bc61b33dc3c98385cfd74ed60ace4 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 22:43:55 +0800 Subject: [PATCH 4/4] fix: rename server files with transport suffix - com.browserbase-mcp.json -> com.browserbase-mcp-npx.json (id: com.browserbase-mcp-npx) Signed-off-by: Mohammod Al Amin Ashik --- ...{com.browserbase-mcp.json => com.browserbase-mcp-npx.json} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename servers/{com.browserbase-mcp.json => com.browserbase-mcp-npx.json} (98%) diff --git a/servers/com.browserbase-mcp.json b/servers/com.browserbase-mcp-npx.json similarity index 98% rename from servers/com.browserbase-mcp.json rename to servers/com.browserbase-mcp-npx.json index e2b8b91..8bd926a 100644 --- a/servers/com.browserbase-mcp.json +++ b/servers/com.browserbase-mcp-npx.json @@ -1,7 +1,7 @@ { "$schema": "../schemas/server-definition.schema.json", - "id": "com.browserbase-mcp", - "name": "Browserbase", + "id": "com.browserbase-mcp-npx", + "name": "Browserbase (npx)", "alias": "browserbase", "description": "Cloud browser automation using Browserbase and Stagehand. Navigate, click, extract data, and take screenshots in cloud-hosted browsers.", "icon": "https://avatars.githubusercontent.com/u/158221360?v=4",