Playwright MCP sidecar crashes: unknown option '--transport' #41
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
In chart v0.4.0, the playwright MCP sidecar image was fixed to
mcr.microsoft.com/playwright/mcp:latest, but the container crashes on startup:The chart appears to pass a
--transportargument that this image doesn't support.Related
Workaround
Disable the playwright sidecar:
Fixed in v0.4.1. The Playwright MCP image (
mcr.microsoft.com/playwright/mcp) doesn't support--transport. Changed to usenode cli.js --headless --browser chromium --no-sandbox --port <port>for SSE mode.The fix in v0.4.1 doesn't seem to work. Still getting the same error:
The mcr.microsoft.com/playwright/mcp:latest image still doesn't support the
--transportargument that the chart passes to it.Good progress with v0.4.2! The
--transporterror is now fixed and the playwright container starts successfully.However, there's a new issue: liveness/readiness probe failures:
The container starts and outputs:
But the probe can't connect to port 8086. The service might not be binding to the right interface or there could be a probe configuration issue.