forked from brightdata/brightdata-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
86 lines (86 loc) · 2.54 KB
/
server.json
File metadata and controls
86 lines (86 loc) · 2.54 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.brightdata/brightdata-mcp",
"description": "Bright Data's Web MCP server enabling AI agents to search, extract & navigate the web",
"repository": {
"url": "https://github.com/brightdata/brightdata-mcp",
"source": "github"
},
"version": "2.9.2",
"packages": [
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "@brightdata/mcp",
"version": "2.9.2",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "API_TOKEN",
"description": "Your API key for Bright Data",
"isRequired": true,
"isSecret": true,
"format": "string"
},
{
"name": "WEB_UNLOCKER_ZONE",
"description": "Your unlocker zone name",
"isRequired": false,
"isSecret": false,
"format": "string"
},
{
"name": "BROWSER_ZONE",
"description": "Your browser zone name",
"isRequired": false,
"isSecret": false,
"format": "string"
},
{
"name": "PRO_MODE",
"description": "To enable PRO_MODE - set to true",
"isRequired": false,
"isSecret": false,
"format": "boolean"
},
{
"name": "GROUPS",
"description": "Comma-separated tool group IDs (e.g., 'ecommerce,browser')",
"isRequired": false,
"isSecret": false,
"format": "string"
},
{
"name": "TOOLS",
"description": "Comma-separated tool names to enable",
"isRequired": false,
"isSecret": false,
"format": "string"
},
{
"name": "POLLING_TIMEOUT",
"description": "Polling timeout in seconds for web_data_* tools (default: 600)",
"isRequired": false,
"isSecret": false,
"format": "number"
},
{
"name": "BASE_TIMEOUT",
"description": "Request timeout in seconds for base tools (search & scrape). No limit if unset",
"isRequired": false,
"isSecret": false,
"format": "number"
},
{
"name": "BASE_MAX_RETRIES",
"description": "Max retries for base tools on transient errors (0-3, default: 0)",
"isRequired": false,
"isSecret": false,
"format": "number"
}
]
}
]
}