Skip to content

Commit d6f2f68

Browse files
authored
feat: add Browserbase MCP server definition (#27)
* 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 * fix: update server definition (input type 'password' -> 'text' for BROWSERBASE_API_KEY) * fix: add optional GEMINI_API_KEY input (required by default Stagehand model) * 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 <maa.ashik00@gmail.com> --------- Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com>
1 parent b25e9f9 commit d6f2f68

1 file changed

Lines changed: 103 additions & 0 deletions

File tree

Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.browserbase-mcp-npx",
4+
"name": "Browserbase (npx)",
5+
"alias": "browserbase",
6+
"description": "Cloud browser automation using Browserbase and Stagehand. Navigate, click, extract data, and take screenshots in cloud-hosted browsers.",
7+
"icon": "https://avatars.githubusercontent.com/u/158221360?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"developer-tools",
11+
"cloud"
12+
],
13+
"tags": [
14+
"browserbase",
15+
"browser",
16+
"automation",
17+
"stagehand",
18+
"scraping",
19+
"testing"
20+
],
21+
"transport": {
22+
"type": "stdio",
23+
"command": "npx",
24+
"args": [
25+
"-y",
26+
"@browserbasehq/mcp-server-browserbase"
27+
],
28+
"env": {
29+
"BROWSERBASE_API_KEY": "${input:BROWSERBASE_API_KEY}",
30+
"BROWSERBASE_PROJECT_ID": "${input:BROWSERBASE_PROJECT_ID}",
31+
"GEMINI_API_KEY": "${input:GEMINI_API_KEY}"
32+
},
33+
"metadata": {
34+
"inputs": [
35+
{
36+
"id": "BROWSERBASE_API_KEY",
37+
"label": "Browserbase API Key",
38+
"description": "API key for your Browserbase account.",
39+
"type": "text",
40+
"required": true,
41+
"secret": true,
42+
"placeholder": "bb_live_xxxxxxxxxxxxxxxx",
43+
"obtain": {
44+
"url": "https://www.browserbase.com/",
45+
"instructions": "1. Go to browserbase.com and create an account\n2. Navigate to Settings in the dashboard\n3. Copy your API key",
46+
"button_label": "Get API Key"
47+
}
48+
},
49+
{
50+
"id": "BROWSERBASE_PROJECT_ID",
51+
"label": "Browserbase Project ID",
52+
"description": "Your Browserbase project ID, found in the dashboard.",
53+
"type": "text",
54+
"required": true,
55+
"secret": false,
56+
"placeholder": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
57+
"obtain": {
58+
"url": "https://www.browserbase.com/",
59+
"instructions": "1. Log in to browserbase.com\n2. Open your project in the dashboard\n3. Copy the Project ID from the project settings",
60+
"button_label": "Get Project ID"
61+
}
62+
},
63+
{
64+
"id": "GEMINI_API_KEY",
65+
"label": "Gemini API Key",
66+
"description": "Google Gemini API key. Required by default (Stagehand uses Gemini 2.0 Flash). Optional if using a custom model via --modelApiKey.",
67+
"type": "text",
68+
"required": false,
69+
"secret": true,
70+
"placeholder": "AIzaSy...",
71+
"obtain": {
72+
"url": "https://aistudio.google.com/apikey",
73+
"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",
74+
"button_label": "Get API Key"
75+
}
76+
}
77+
]
78+
}
79+
},
80+
"auth": {
81+
"type": "api_key",
82+
"instructions": "Get your API key and Project ID at https://www.browserbase.com/"
83+
},
84+
"contributor": {
85+
"name": "Browserbase",
86+
"github": "browserbase",
87+
"url": "https://www.browserbase.com"
88+
},
89+
"links": {
90+
"repository": "https://github.com/browserbase/mcp-server-browserbase",
91+
"homepage": "https://www.browserbase.com",
92+
"documentation": "https://docs.browserbase.com/integrations/mcp/"
93+
},
94+
"platforms": [
95+
"all"
96+
],
97+
"capabilities": {
98+
"tools": true,
99+
"resources": false,
100+
"prompts": false,
101+
"read_only_mode": false
102+
}
103+
}

0 commit comments

Comments
 (0)