-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Closed
Labels
Description
With this:
"playwright": {
"command": "npx",
"args": [
"@playwright/mcp@latest"
]
}
Originally I was on version 18.17 of Node, but it seems like this version requires 20+ so I updated but now it's just not running.
When trying to reload via the Cursor UI:
2025-05-03 20:24:12.741 [info] ight: Handling ReloadClient action
2025-05-03 20:24:12.741 [info] ight: Cleaning up
2025-05-03 20:24:12.741 [info] ight: Starting new stdio process with command: npx @playwright/mcp@latest
2025-05-03 20:24:13.890 [info] ight: Client closed for command
2025-05-03 20:24:13.890 [error] ight: Error in MCP: Client closed
2025-05-03 20:24:13.890 [error] ight: Failed to reload client: MCP error -32000: Connection closed
With v0.0.18 it works:
"playwright": {
"command": "npx",
"args": [
"@playwright/mcp@v0.0.18"
]
},
mikestaub, hanan-monday and piyushchauhan