2026-04-08 11:11:04 +00:00
|
|
|
#!/usr/bin/env zsh
|
|
|
|
|
|
2026-04-17 13:25:42 +00:00
|
|
|
cd "$(dirname "$0")"
|
2026-04-08 11:11:04 +00:00
|
|
|
|
|
|
|
|
# Install dependencies if not present
|
|
|
|
|
if [[ ! -d "node_modules" ]]; then
|
|
|
|
|
npm install @playwright/test @playwright/mcp
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
# Ensure browsers are installed
|
|
|
|
|
npx playwright install chromium
|
|
|
|
|
|
|
|
|
|
# Launch the server
|
|
|
|
|
npx @playwright/mcp --browser chromium --headless 2> playwright_mcp.log
|
|
|
|
|
|
|
|
|
|
|