-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.mcp.json
More file actions
34 lines (34 loc) · 889 Bytes
/
.mcp.json
File metadata and controls
34 lines (34 loc) · 889 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
27
28
29
30
31
32
33
34
{
"mcpServers": {
"playwright": {
"type": "stdio",
"command": "npx",
"args": [
"@executeautomation/playwright-mcp-server"
],
"env": {
"PLAYWRIGHT_HEADLESS": "false",
"PLAYWRIGHT_USER_DATA_DIR": "./.playwright-browser-data",
"PLAYWRIGHT_PERSISTENT_CONTEXT": "true",
"PLAYWRIGHT_VIEWPORT_WIDTH": "1920",
"PLAYWRIGHT_VIEWPORT_HEIGHT": "1080",
"PLAYWRIGHT_TIMEOUT": "30000",
"PLAYWRIGHT_SLOW_MO": "500"
}
},
"memory": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-memory"],
"env": {
"MCP_MEMORY_DATA_DIR": "./.mcp-data"
}
},
"sequentialthinking": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-sequential-thinking"],
"env": {}
}
}
}