-
Notifications
You must be signed in to change notification settings - Fork 340
Expand file tree
/
Copy pathserver.json
More file actions
77 lines (77 loc) · 2.16 KB
/
server.json
File metadata and controls
77 lines (77 loc) · 2.16 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-07-09/server.schema.json",
"name": "io.github.browserbase/mcp-server-browserbase",
"description": "MCP server for AI web browser automation using Browserbase and Stagehand",
"status": "active",
"repository": {
"url": "https://github.com/browserbase/mcp-server-browserbase",
"source": "github"
},
"version": "2.2.0",
"packages": [
{
"registry_type": "npm",
"registry_base_url": "https://registry.npmjs.org",
"identifier": "@browserbasehq/mcp-server-browserbase",
"version": "2.2.0",
"transport": {
"type": "stdio"
},
"environment_variables": [
{
"description": "Your Browserbase API key",
"is_required": true,
"format": "string",
"is_secret": true,
"name": "BROWSERBASE_API_KEY"
},
{
"description": "Your Browserbase Project ID",
"is_required": true,
"format": "string",
"is_secret": false,
"name": "BROWSERBASE_PROJECT_ID"
},
{
"description": "Your Gemini API key (default model)",
"is_required": true,
"format": "string",
"is_secret": true,
"name": "GEMINI_API_KEY"
}
]
},
{
"registry_type": "oci",
"identifier": "browserbasehq/mcp-server-browserbase",
"version": "2.2.0",
"runtime_hint": "docker",
"environment_variables": [
{
"description": "Your Browserbase API key",
"is_required": true,
"format": "string",
"is_secret": true,
"name": "BROWSERBASE_API_KEY"
},
{
"description": "Your Browserbase Project ID",
"is_required": true,
"format": "string",
"is_secret": false,
"name": "BROWSERBASE_PROJECT_ID"
},
{
"description": "Your Gemini API key (default model)",
"is_required": true,
"format": "string",
"is_secret": true,
"name": "GEMINI_API_KEY"
}
],
"transport": {
"type": "stdio"
}
}
]
}