-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathserver.json
More file actions
335 lines (335 loc) · 12.3 KB
/
Copy pathserver.json
File metadata and controls
335 lines (335 loc) · 12.3 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.swimmwatch/cloakbrowser-mcp",
"title": "CloakBrowser MCP",
"description": "Playwright MCP-compatible browser automation bridge for CloakBrowser Chromium.",
"version": "1.9.0",
"websiteUrl": "https://swimmwatch.github.io/cloakbrowser-mcp/",
"repository": {
"url": "https://github.com/swimmwatch/cloakbrowser-mcp",
"source": "github"
},
"icons": [
{
"src": "https://swimmwatch.github.io/cloakbrowser-mcp/assets/brand/logo.svg",
"mimeType": "image/svg+xml",
"sizes": ["any"]
}
],
"packages": [
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "cloakbrowser-mcp",
"version": "1.9.0",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "PLAYWRIGHT_MCP_BROWSER_ENGINE",
"description": "Bridge browser engine: cloak or playwright.",
"format": "string",
"default": "cloak"
},
{
"name": "PLAYWRIGHT_MCP_HEADLESS",
"description": "Run the browser in headless mode.",
"format": "boolean",
"default": "true"
},
{
"name": "PLAYWRIGHT_MCP_OUTPUT_DIR",
"description": "Directory where upstream Playwright MCP writes artifacts.",
"format": "filepath",
"default": ".playwright-mcp"
},
{
"name": "PLAYWRIGHT_MCP_OUTPUT_MODE",
"description": "Return snapshots, console logs, and network logs through stdout or files.",
"format": "string",
"default": "stdout"
},
{
"name": "PLAYWRIGHT_MCP_USER_DATA_DIR",
"description": "Persistent Chromium profile directory. The bridge resolves it to an absolute path and writes it to generated Playwright MCP config.",
"format": "filepath"
},
{
"name": "CLOAK_PLAYWRIGHT_MCP_CONTEXT_OPTIONS",
"description": "JSON object with validated Playwright context options such as viewport, locale, timezoneId, permissions, geolocation, and headers.",
"format": "string"
},
{
"name": "CLOAK_PLAYWRIGHT_MCP_EXTENSION_PATHS",
"description": "JSON array or comma-separated list of Chrome extension directories. Requires PLAYWRIGHT_MCP_USER_DATA_DIR.",
"format": "string"
},
{
"name": "CLOAK_PLAYWRIGHT_MCP_CONSOLE_FALLBACK",
"description": "Patch upstream console message collection for CloakBrowser compatibility.",
"format": "boolean",
"default": "true"
},
{
"name": "CLOAK_PLAYWRIGHT_MCP_GEOIP_PROXY_MATCH",
"description": "Resolve proxy GeoIP and match CloakBrowser timezone/locale fingerprint flags when PLAYWRIGHT_MCP_PROXY_SERVER is set.",
"format": "boolean",
"default": "false"
},
{
"name": "CLOAK_PLAYWRIGHT_MCP_EXTRA_ARGS",
"description": "Comma-separated or JSON array of extra Chromium launch arguments.",
"format": "string"
}
]
},
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "cloakbrowser-mcp",
"version": "1.9.0",
"packageArguments": [
{
"type": "named",
"name": "--transport",
"value": "streamable-http"
}
],
"transport": {
"type": "streamable-http",
"url": "http://127.0.0.1:3000/mcp"
},
"environmentVariables": [
{
"name": "CLOAK_PLAYWRIGHT_MCP_HTTP_HOST",
"description": "Streamable HTTP bind host.",
"format": "string",
"default": "127.0.0.1"
},
{
"name": "CLOAK_PLAYWRIGHT_MCP_HTTP_PORT",
"description": "Streamable HTTP bind port.",
"format": "number",
"default": "3000"
},
{
"name": "CLOAK_PLAYWRIGHT_MCP_HTTP_ENDPOINT",
"description": "Streamable HTTP endpoint path.",
"format": "string",
"default": "/mcp"
},
{
"name": "CLOAK_PLAYWRIGHT_MCP_HTTP_AUTH_TOKEN",
"description": "Optional Streamable HTTP Bearer token.",
"format": "string",
"isSecret": true
},
{
"name": "CLOAK_PLAYWRIGHT_MCP_HTTP_SESSION_BACKEND",
"description": "Session metadata backend. Only memory is implemented in this release.",
"format": "string",
"default": "memory"
},
{
"name": "CLOAK_PLAYWRIGHT_MCP_HTTP_SESSION_IDLE_TTL_MS",
"description": "Idle TTL for Streamable HTTP sessions.",
"format": "number",
"default": "3600000"
},
{
"name": "CLOAK_PLAYWRIGHT_MCP_HTTP_SESSION_MAX",
"description": "Maximum active Streamable HTTP sessions in one process.",
"format": "number",
"default": "32"
},
{
"name": "PLAYWRIGHT_MCP_BROWSER_ENGINE",
"description": "Bridge browser engine: cloak or playwright.",
"format": "string",
"default": "cloak"
},
{
"name": "PLAYWRIGHT_MCP_HEADLESS",
"description": "Run the browser in headless mode.",
"format": "boolean",
"default": "true"
},
{
"name": "PLAYWRIGHT_MCP_OUTPUT_DIR",
"description": "Directory where upstream Playwright MCP writes artifacts.",
"format": "filepath",
"default": ".playwright-mcp"
},
{
"name": "PLAYWRIGHT_MCP_OUTPUT_MODE",
"description": "Return snapshots, console logs, and network logs through stdout or files.",
"format": "string",
"default": "stdout"
},
{
"name": "PLAYWRIGHT_MCP_USER_DATA_DIR",
"description": "Persistent Chromium profile directory. The bridge resolves it to an absolute path and writes it to generated Playwright MCP config.",
"format": "filepath"
},
{
"name": "CLOAK_PLAYWRIGHT_MCP_CONTEXT_OPTIONS",
"description": "JSON object with validated Playwright context options such as viewport, locale, timezoneId, permissions, geolocation, and headers.",
"format": "string"
},
{
"name": "CLOAK_PLAYWRIGHT_MCP_EXTENSION_PATHS",
"description": "JSON array or comma-separated list of Chrome extension directories. Requires PLAYWRIGHT_MCP_USER_DATA_DIR.",
"format": "string"
},
{
"name": "CLOAK_PLAYWRIGHT_MCP_CONSOLE_FALLBACK",
"description": "Patch upstream console message collection for CloakBrowser compatibility.",
"format": "boolean",
"default": "true"
},
{
"name": "CLOAK_PLAYWRIGHT_MCP_GEOIP_PROXY_MATCH",
"description": "Resolve proxy GeoIP and match CloakBrowser timezone/locale fingerprint flags when PLAYWRIGHT_MCP_PROXY_SERVER is set.",
"format": "boolean",
"default": "false"
},
{
"name": "CLOAK_PLAYWRIGHT_MCP_EXTRA_ARGS",
"description": "Comma-separated or JSON array of extra Chromium launch arguments.",
"format": "string"
}
]
},
{
"registryType": "oci",
"identifier": "ghcr.io/swimmwatch/cloakbrowser-mcp:1.9.0",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "PLAYWRIGHT_MCP_BROWSER_ENGINE",
"description": "Bridge browser engine: cloak or playwright.",
"format": "string",
"default": "cloak"
},
{
"name": "PLAYWRIGHT_MCP_HEADLESS",
"description": "Run the browser in headless mode.",
"format": "boolean",
"default": "true"
},
{
"name": "PLAYWRIGHT_MCP_OUTPUT_DIR",
"description": "Directory inside the container where upstream Playwright MCP writes artifacts.",
"format": "filepath",
"default": "/data"
},
{
"name": "PLAYWRIGHT_MCP_OUTPUT_MODE",
"description": "Return snapshots, console logs, and network logs through stdout or files.",
"format": "string",
"default": "stdout"
},
{
"name": "PLAYWRIGHT_MCP_USER_DATA_DIR",
"description": "Persistent Chromium profile directory inside the container. Use /data/profiles/... with the existing /data volume.",
"format": "filepath"
},
{
"name": "CLOAK_PLAYWRIGHT_MCP_CONTEXT_OPTIONS",
"description": "JSON object with validated Playwright context options such as viewport, locale, timezoneId, permissions, geolocation, and headers.",
"format": "string"
},
{
"name": "CLOAK_PLAYWRIGHT_MCP_EXTENSION_PATHS",
"description": "JSON array or comma-separated list of Chrome extension directories inside the container. Requires PLAYWRIGHT_MCP_USER_DATA_DIR.",
"format": "string"
},
{
"name": "CLOAK_PLAYWRIGHT_MCP_CONSOLE_FALLBACK",
"description": "Patch upstream console message collection for CloakBrowser compatibility.",
"format": "boolean",
"default": "true"
},
{
"name": "CLOAK_PLAYWRIGHT_MCP_GEOIP_PROXY_MATCH",
"description": "Resolve proxy GeoIP and match CloakBrowser timezone/locale fingerprint flags when PLAYWRIGHT_MCP_PROXY_SERVER is set.",
"format": "boolean",
"default": "false"
},
{
"name": "CLOAK_PLAYWRIGHT_MCP_EXTRA_ARGS",
"description": "Comma-separated or JSON array of extra Chromium launch arguments.",
"format": "string"
}
]
},
{
"registryType": "oci",
"identifier": "docker.io/swimmwatch/cloakbrowser-mcp:1.9.0",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "PLAYWRIGHT_MCP_BROWSER_ENGINE",
"description": "Bridge browser engine: cloak or playwright.",
"format": "string",
"default": "cloak"
},
{
"name": "PLAYWRIGHT_MCP_HEADLESS",
"description": "Run the browser in headless mode.",
"format": "boolean",
"default": "true"
},
{
"name": "PLAYWRIGHT_MCP_OUTPUT_DIR",
"description": "Directory inside the container where upstream Playwright MCP writes artifacts.",
"format": "filepath",
"default": "/data"
},
{
"name": "PLAYWRIGHT_MCP_OUTPUT_MODE",
"description": "Return snapshots, console logs, and network logs through stdout or files.",
"format": "string",
"default": "stdout"
},
{
"name": "PLAYWRIGHT_MCP_USER_DATA_DIR",
"description": "Persistent Chromium profile directory inside the container. Use /data/profiles/... with the existing /data volume.",
"format": "filepath"
},
{
"name": "CLOAK_PLAYWRIGHT_MCP_CONTEXT_OPTIONS",
"description": "JSON object with validated Playwright context options such as viewport, locale, timezoneId, permissions, geolocation, and headers.",
"format": "string"
},
{
"name": "CLOAK_PLAYWRIGHT_MCP_EXTENSION_PATHS",
"description": "JSON array or comma-separated list of Chrome extension directories inside the container. Requires PLAYWRIGHT_MCP_USER_DATA_DIR.",
"format": "string"
},
{
"name": "CLOAK_PLAYWRIGHT_MCP_CONSOLE_FALLBACK",
"description": "Patch upstream console message collection for CloakBrowser compatibility.",
"format": "boolean",
"default": "true"
},
{
"name": "CLOAK_PLAYWRIGHT_MCP_GEOIP_PROXY_MATCH",
"description": "Resolve proxy GeoIP and match CloakBrowser timezone/locale fingerprint flags when PLAYWRIGHT_MCP_PROXY_SERVER is set.",
"format": "boolean",
"default": "false"
},
{
"name": "CLOAK_PLAYWRIGHT_MCP_EXTRA_ARGS",
"description": "Comma-separated or JSON array of extra Chromium launch arguments.",
"format": "string"
}
]
}
]
}