forked from etairl/parallel-browser-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
73 lines (73 loc) · 2.52 KB
/
Copy pathserver.json
File metadata and controls
73 lines (73 loc) · 2.52 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.etairl/parallel-browser-mcp",
"description": "MCP server for parallel browser automation across multiple providers.",
"title": "Parallel Browser MCP",
"repository": {
"url": "https://github.com/etairl/parallel-browser-mcp",
"source": "github"
},
"version": "0.1.12",
"packages": [
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "parallel-browser-mcp",
"version": "0.1.12",
"runtimeHint": "npx",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "BROWSER_MCP_CONFIG",
"description": "Inline JSON configuration for providers and defaults. See README for shape.",
"isRequired": false,
"isSecret": false
},
{
"name": "BROWSER_MCP_CONFIG_PATH",
"description": "Path to a JSON file with provider configuration.",
"isRequired": false,
"isSecret": false
},
{
"name": "BROWSERBASE_API_KEY",
"description": "Browserbase API key (required when using the browserbase provider).",
"isRequired": false,
"isSecret": true
},
{
"name": "BROWSERBASE_PROJECT_ID",
"description": "Browserbase project ID (required when using the browserbase provider, unless set in config).",
"isRequired": false,
"isSecret": false
},
{
"name": "ANCHOR_API_KEY",
"description": "Anchor Browser API key (required when using the anchor provider).",
"isRequired": false,
"isSecret": true
},
{
"name": "CLOUDFLARE_API_TOKEN",
"description": "Cloudflare API token (required when using the cloudflare provider).",
"isRequired": false,
"isSecret": true
},
{
"name": "CLOUDFLARE_ACCOUNT_ID",
"description": "Cloudflare account ID (required when using the cloudflare provider).",
"isRequired": false,
"isSecret": false
},
{
"name": "PLAYWRIGHT_USE_CLOAKBROWSER",
"description": "Set to 'true' to launch the local Playwright provider via CloakBrowser (https://cloakbrowser.dev/) stealth Chromium. Requires installing the optional 'cloakbrowser' npm package.",
"isRequired": false,
"isSecret": false
}
]
}
]
}