-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathcommunity.playwright.json
More file actions
71 lines (64 loc) · 2.12 KB
/
Copy pathcommunity.playwright.json
File metadata and controls
71 lines (64 loc) · 2.12 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
{
"$schema": "../schemas/server-definition.schema.json",
"id": "community.playwright",
"name": "Playwright",
"alias": "playwright",
"description": "Browser automation using Playwright. Navigate pages, click elements, fill forms, take screenshots, and interact with web content through structured accessibility snapshots.",
"icon": "https://avatars.githubusercontent.com/u/6154722?v=4",
"schema_version": "2.1",
"categories": ["developer-tools"],
"tags": ["playwright", "browser", "automation", "testing", "screenshots", "web", "scraping", "accessibility"],
"transport": {
"type": "stdio",
"command": "npx",
"args": ["@playwright/mcp@latest"],
"metadata": {
"inputs": [
{
"id": "PLAYWRIGHT_MCP_BROWSER",
"label": "Browser",
"description": "Browser to use for automation. Defaults to Chrome if not specified.",
"type": "select",
"required": false,
"secret": false,
"placeholder": "chrome",
"options": [
{ "value": "chrome", "label": "Chrome" },
{ "value": "firefox", "label": "Firefox" },
{ "value": "webkit", "label": "WebKit" },
{ "value": "msedge", "label": "Microsoft Edge" }
]
},
{
"id": "PLAYWRIGHT_MCP_HEADLESS",
"label": "Headless Mode",
"description": "Run browser in headless mode (no visible window). Set to true for server environments.",
"type": "boolean",
"required": false,
"secret": false
}
]
}
},
"auth": {
"type": "none"
},
"contributor": {
"name": "Microsoft",
"github": "microsoft",
"url": "https://playwright.dev"
},
"links": {
"repository": "https://github.com/microsoft/playwright-mcp",
"homepage": "https://playwright.dev",
"documentation": "https://github.com/microsoft/playwright-mcp#readme"
},
"platforms": ["all"],
"capabilities": {
"tools": true,
"resources": false,
"prompts": false,
"read_only_mode": false
},
"changelog_url": "https://github.com/microsoft/playwright-mcp/releases"
}