Run npm ci & point to README in vscode-playwright-mcp (#270603)

Fixes https://github.com/microsoft/vscode/issues/270534
This commit is contained in:
Tyler James Leonhardt
2025-10-09 10:25:24 -07:00
committed by GitHub
parent d82887c57b
commit 32d3077232
2 changed files with 3 additions and 4 deletions
+2 -3
View File
@@ -123,12 +123,11 @@ test/mcp/
## Troubleshooting
### Server Won't Start
- Ensure Code - OSS's Core and Extension builds are running (they should start automatically)
- Check that port 33418 is not already in use
- Ensure Code - OSS has been built and run at least once (via F5 or `code.sh`)
- Verify all dependencies are installed with `npm install`
### Browser Automation Issues
- Ensure Code - OSS has been built and run at least once
- Ensure Code - OSS has been built and run at least once (via F5 or `code.sh`)
- Check the server logs for Playwright-related errors
- Verify the test repository is properly cloned
+1 -1
View File
@@ -9,7 +9,7 @@
"watch-automation": "cd ../automation && npm run watch",
"watch-mcp": "node ../../node_modules/typescript/bin/tsc --watch --preserveWatchOutput",
"watch": "npm-run-all -lp watch-automation watch-mcp",
"start-stdio": "npm run -s compile && node ./out/stdio.js"
"start-stdio": "echo 'Starting vscode-playwright-mcp... For customization & troubleshooting, see ./test/mcp/README.md' && npm ci && npm run -s compile && node ./out/stdio.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.18.1",