-
Notifications
You must be signed in to change notification settings - Fork 275
Expand file tree
/
Copy pathsmithery.yaml
More file actions
26 lines (26 loc) · 819 Bytes
/
smithery.yaml
File metadata and controls
26 lines (26 loc) · 819 Bytes
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
startCommand:
type: stdio
configSchema:
type: object
properties:
apiToken:
type: string
description: "Bright Data API key, available in https://brightdata.com/cp/setting/users"
webUnlockerZone:
type: string
default: 'mcp_unlocker'
description: "Optional: The Web Unlocker zone name (defaults to 'mcp_unlocker')"
browserZone:
type: string
default: 'mcp_browser'
description: "Optional: Zone name for the Browser API (enables browser control tools, deafults to 'mcp_browser')"
commandFunction: |-
config => ({
command: 'node',
args: ['server.js'],
env: {
API_TOKEN: config.apiToken,
WEB_UNLOCKER_ZONE: config.webUnlockerZone,
BROWSER_ZONE: config.browserZone
}
})