Server data from the Official MCP Registry
Playwright MCP-compatible browser automation bridge for CloakBrowser Chromium.
Playwright MCP-compatible browser automation bridge for CloakBrowser Chromium.
Valid MCP server (2 strong, 1 medium validity signals). No known CVEs in dependencies. Package registry verified. Imported from the Official MCP Registry.
6 files analyzed · 1 issue found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: PLAYWRIGHT_MCP_BROWSER_ENGINE
Environment variable: PLAYWRIGHT_MCP_HEADLESS
Environment variable: PLAYWRIGHT_MCP_OUTPUT_DIR
Environment variable: PLAYWRIGHT_MCP_OUTPUT_MODE
Environment variable: PLAYWRIGHT_MCP_USER_DATA_DIR
Environment variable: CLOAK_PLAYWRIGHT_MCP_CONTEXT_OPTIONS
Environment variable: CLOAK_PLAYWRIGHT_MCP_EXTENSION_PATHS
Environment variable: CLOAK_PLAYWRIGHT_MCP_CONSOLE_FALLBACK
Environment variable: CLOAK_PLAYWRIGHT_MCP_GEOIP_PROXY_MATCH
Environment variable: CLOAK_PLAYWRIGHT_MCP_EXTRA_ARGS
Environment variable: CLOAK_PLAYWRIGHT_MCP_HTTP_HOST
Environment variable: CLOAK_PLAYWRIGHT_MCP_HTTP_PORT
Environment variable: CLOAK_PLAYWRIGHT_MCP_HTTP_ENDPOINT
Environment variable: CLOAK_PLAYWRIGHT_MCP_HTTP_AUTH_TOKEN
Environment variable: CLOAK_PLAYWRIGHT_MCP_HTTP_SESSION_BACKEND
Environment variable: CLOAK_PLAYWRIGHT_MCP_HTTP_SESSION_IDLE_TTL_MS
Environment variable: CLOAK_PLAYWRIGHT_MCP_HTTP_SESSION_MAX
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-swimmwatch-cloakbrowser-mcp": {
"env": {
"PLAYWRIGHT_MCP_HEADLESS": "your-playwright-mcp-headless-here",
"PLAYWRIGHT_MCP_OUTPUT_DIR": "your-playwright-mcp-output-dir-here",
"PLAYWRIGHT_MCP_OUTPUT_MODE": "your-playwright-mcp-output-mode-here",
"PLAYWRIGHT_MCP_USER_DATA_DIR": "your-playwright-mcp-user-data-dir-here",
"PLAYWRIGHT_MCP_BROWSER_ENGINE": "your-playwright-mcp-browser-engine-here",
"CLOAK_PLAYWRIGHT_MCP_HTTP_HOST": "your-cloak-playwright-mcp-http-host-here",
"CLOAK_PLAYWRIGHT_MCP_HTTP_PORT": "your-cloak-playwright-mcp-http-port-here",
"CLOAK_PLAYWRIGHT_MCP_EXTRA_ARGS": "your-cloak-playwright-mcp-extra-args-here",
"CLOAK_PLAYWRIGHT_MCP_HTTP_ENDPOINT": "your-cloak-playwright-mcp-http-endpoint-here",
"CLOAK_PLAYWRIGHT_MCP_CONTEXT_OPTIONS": "your-cloak-playwright-mcp-context-options-here",
"CLOAK_PLAYWRIGHT_MCP_EXTENSION_PATHS": "your-cloak-playwright-mcp-extension-paths-here",
"CLOAK_PLAYWRIGHT_MCP_HTTP_AUTH_TOKEN": "your-cloak-playwright-mcp-http-auth-token-here",
"CLOAK_PLAYWRIGHT_MCP_CONSOLE_FALLBACK": "your-cloak-playwright-mcp-console-fallback-here",
"CLOAK_PLAYWRIGHT_MCP_HTTP_SESSION_MAX": "your-cloak-playwright-mcp-http-session-max-here",
"CLOAK_PLAYWRIGHT_MCP_GEOIP_PROXY_MATCH": "your-cloak-playwright-mcp-geoip-proxy-match-here",
"CLOAK_PLAYWRIGHT_MCP_HTTP_SESSION_BACKEND": "your-cloak-playwright-mcp-http-session-backend-here",
"CLOAK_PLAYWRIGHT_MCP_HTTP_SESSION_IDLE_TTL_MS": "your-cloak-playwright-mcp-http-session-idle-ttl-ms-here"
},
"args": [
"-y",
"cloakbrowser-mcp"
],
"command": "npx"
}
}
}From the project's GitHub README.
cloakbrowser-mcp is a drop-in Playwright MCP-compatible browser automation server with unchanged upstream tools, CloakBrowser Chromium, and production-ready npm, Docker, and Streamable HTTP packaging. It runs upstream @playwright/mcp as the canonical tool surface and points that runtime at CloakBrowser.
Run npx -y cloakbrowser-mcp@latest, connect Claude Desktop or Codex CLI, ask for web research, daily automation, or testing in plain English, and inspect the real browser result.
Documentation: swimmwatch.github.io/cloakbrowser-mcp · Comparison · Recipes
Use it when you need:
Cross-platform checks cover npm on Linux x64/arm64, macOS arm64/x64, and Windows x64 across Node.js 22-26. Docker images are built and smoke-tested for linux/amd64 and linux/arm64.
See @playwright/mcp vs cloakbrowser-mcp when deciding whether plain upstream Playwright MCP or CloakBrowser MCP fits a deployment better. The Recipes pages show task-focused setup paths for persistent login profiles, Chrome extensions, reverse proxies, regional QA, client connections, and CI smoke tests.
npx -y cloakbrowser-mcp@latest
Requires Node.js 22.12 or newer. Run diagnostics before wiring a client:
npx -y cloakbrowser-mcp@latest doctor
For Streamable HTTP instead of stdio:
npx -y cloakbrowser-mcp@latest --transport streamable-http --http-port 3000
See the generated CLI Reference for all flags.
docker run --rm --init -i \
-v "$PWD/artifacts:/data" \
swimmwatch/cloakbrowser-mcp:latest
For Streamable HTTP:
docker run --rm --init -p 127.0.0.1:3000:3000 \
-v "$PWD/artifacts:/data" \
swimmwatch/cloakbrowser-mcp:latest \
--transport streamable-http --http-host 0.0.0.0 --http-port 3000
The Docker image writes artifacts to /data and is published for linux/amd64 and linux/arm64. It defaults to CLOAK_PLAYWRIGHT_MCP_NO_SANDBOX=true for compatibility with containerized runtimes where Chromium sandboxing is often unavailable. If your host and container runtime support Chromium sandboxing, set CLOAK_PLAYWRIGHT_MCP_NO_SANDBOX=false; for untrusted pages, keep container network access and mounted host directories tightly scoped. The same tags are also available from ghcr.io/swimmwatch/cloakbrowser-mcp. See Docker for persistent profiles, extension mounts, HTTPS, and smoke-test examples, or use the reverse proxy recipe for a focused Streamable HTTP deployment.
codex mcp add cloakbrowser -- npx -y cloakbrowser-mcp@latest
claude mcp add --transport stdio cloakbrowser -- npx -y cloakbrowser-mcp@latest
{
"servers": {
"cloakbrowser": {
"type": "stdio",
"command": "npx",
"args": ["-y", "cloakbrowser-mcp@latest"]
}
}
}
mcpServers ClientsAdd this server entry to the client's MCP JSON config:
{
"mcpServers": {
"cloakbrowser": {
"command": "npx",
"args": ["-y", "cloakbrowser-mcp@latest"]
}
}
}
{
"mcpServers": {
"cloakbrowser": {
"command": "docker",
"args": [
"run",
"--rm",
"--init",
"-i",
"-v",
"/tmp/cloakbrowser-artifacts:/data",
"swimmwatch/cloakbrowser-mcp:latest"
]
}
}
}
npx -y cloakbrowser-mcp@latest --transport streamable-http --http-port 3000
codex mcp add cloakbrowser --url http://127.0.0.1:3000/mcp
claude mcp add --transport http cloakbrowser http://127.0.0.1:3000/mcp
Paste this into Codex, Claude Code, Copilot, Cursor, Cline, Windsurf, or a similar coding assistant that can edit MCP config:
Install the CloakBrowser MCP server for this workspace. Name it "cloakbrowser".
Prefer stdio with command "npx" and args ["-y", "cloakbrowser-mcp@latest"].
If this client uses VS Code mcp.json, add it under "servers" with type "stdio".
If this client uses Claude/Cursor/Cline/Windsurf/Warp-style config, add it under
"mcpServers" with the same command and args. Do not add secrets.
More examples are in Getting Started, with dedicated recipes for Claude Desktop and Codex CLI.
Use upstream PLAYWRIGHT_MCP_* variables for browser, artifacts, timeouts, network, and tool capability settings. Cloak-specific bridge toggles use CLOAK_PLAYWRIGHT_MCP_*.
The common variable table now lives in Configuration. That page also covers persistent profiles, validated context options, Chrome extensions, Streamable HTTP metadata, and HTTPS/auth options. See GeoIP Proxy Matching for regional proxy behavior, Humanized Input Behavior for interaction realism, and Recipes for task-focused configurations.
| cloakbrowser-mcp | @playwright/mcp | CloakBrowser | Node.js | Platform |
|---|---|---|---|---|
1.7.0 | ^0.0.77 | ^0.4.8 | >=22.12 | npm on Linux x64/arm64, macOS arm64/x64, Windows x64; Docker linux/amd64, linux/arm64 |
1.6.1 | ^0.0.77 | ^0.4.7 | >=22.12 | npm on Linux x64/arm64, macOS arm64/x64, Windows x64; Docker linux/amd64, linux/arm64 |
1.6.0 | ^0.0.77 | ^0.4.7 | >=22.12 | npm on Linux x64/arm64, macOS arm64/x64, Windows x64; Docker linux/amd64, linux/arm64 |
1.5.0 | ^0.0.76 | ^0.4.3 | >=22.12 | npm on Linux x64/arm64, macOS arm64/x64, Windows x64; Docker linux/amd64, linux/arm64 |
1.4.0 | ^0.0.76 | ^0.3.32 | >=22.12 | npm on Linux x64/arm64, macOS arm64/x64, Windows x64; Docker linux/amd64, linux/arm64 |
1.3.0 | ^0.0.75 | ^0.3.31 | >=20 | Docker linux/amd64, Node.js local |
1.2.7 | ^0.0.75 | ^0.3.30 | >=20 | Docker linux/amd64, Node.js local |
1.2.6 | ^0.0.75 | ^0.3.30 | >=20 | Docker linux/amd64, Node.js local |
1.2.5 | ^0.0.75 | ^0.3.30 | >=20 | Docker linux/amd64, Node.js local |
1.2.3 | ^0.0.75 | ^0.3.30 | >=20 | Docker linux/amd64, Node.js local |
1.2.2 | ^0.0.75 | ^0.3.30 | >=20 | Docker linux/amd64, Node.js local |
1.2.1 | ^0.0.75 | ^0.3.30 | >=20 | Docker linux/amd64, Node.js local |
1.2.0 | ^0.0.75 | ^0.3.30 | >=20 | Docker linux/amd64, Node.js local |
1.1.0 | ^0.0.75 | ^0.3.30 | >=20 | Docker linux/amd64, Node.js local |
1.0.2 | ^0.0.75 | ^0.3.30 | >=20 | Docker linux/amd64, Node.js local |
1.0.1 | ^0.0.75 | ^0.3.30 | >=20 | Docker linux/amd64, Node.js local |
1.0.0 | ^0.0.75 | ^0.3.30 | >=20 | Docker linux/amd64, Node.js local |
See Version Compatibility for the maintained compatibility table.
The upstream Playwright MCP tool list is authoritative. This project does not reimplement or re-document upstream browser schemas in source code.
Local tools:
cloakbrowser_binary_info returns CloakBrowser package, platform, cache, and resolved binary data.cloakbrowser_bridge_info returns bridge metadata, upstream package/version, and local tool names.npm install
npm run build
npm test
npm run docker:build
npm run docker:smoke
npm run server:validate
npm run bridge:compare -- cloakbrowser-mcp:dev --report bridge-parity-report.json
Documentation starts at docs/getting-started.md. Contributor material is grouped under docs/contributor-guide.md.
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.
by Microsoft · Content & Media
Convert files (PDF, Word, Excel, images, audio) to Markdown for LLM consumption
by mcp-marketplace · Developer Tools
Search and install MCP servers from inside your AI client.
by mcp-marketplace · Finance
Free stock data and market news for any MCP-compatible AI assistant.