-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathcom.browserbase-mcp-npx.json
More file actions
103 lines (103 loc) · 3.33 KB
/
Copy pathcom.browserbase-mcp-npx.json
File metadata and controls
103 lines (103 loc) · 3.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"$schema": "../schemas/server-definition.schema.json",
"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",
"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}",
"GEMINI_API_KEY": "${input:GEMINI_API_KEY}"
},
"metadata": {
"inputs": [
{
"id": "BROWSERBASE_API_KEY",
"label": "Browserbase API Key",
"description": "API key for your Browserbase account.",
"type": "text",
"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"
}
},
{
"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"
}
}
]
}
},
"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
}
}