Chrome DevTools MCP vs Playwright Server (Python)
A side-by-side comparison of two Browser Automation servers — tools, transport, auth, maintenance, and copy-paste config for each.
| Chrome DevTools MCP Lets coding agents drive a real Chrome: automate input, read console and network, record performance traces. Unverified stdio (local) No auth TypeScript | Playwright Server (Python) MCP server exposing Playwright browser-automation tools: navigate, click, fill, screenshot and scrape pages. Unverified stdio (local) No auth Stale Python | |
|---|---|---|
| Category | Browser Automation | Browser Automation |
| Language | TypeScript | Python |
| Transport | stdio (local) | stdio (local) |
| Auth | None | None |
| GitHub stars | 45k | 188 |
| Last commit | 1 month ago | 1 year ago |
| Verified | ||
| Actively maintained | ||
| Install | npx -y chrome-devtools-mcp@latest | — |
| Repo | Open | Open |
Verdict
Pick Chrome DevTools MCP if you want the official, vendor-maintained server, and you prefer the more popular, battle-tested option.
Pick Playwright Server (Python) if you prefer its approach (mcp server exposing playwright browser-automation tools: navigate, click, fill, screenshot and scrape pages).
Add Chrome DevTools MCP
npx -y chrome-devtools-mcp@latestPaste into ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"chrome-devtools-mcp": {
"command": "npx",
"args": [
"-y",
"chrome-devtools-mcp@latest"
]
}
}
}Add Playwright Server (Python)
Paste into ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"playwright-server-python": {
"command": "uvx",
"args": [
"playwright-server"
]
}
}
}Requires `uv` (the Python package runner). Install it from https://docs.astral.sh/uv/ if `uvx` is not found.
FAQ
Chrome DevTools MCP or Playwright Server (Python) — which is better?
Pick Chrome DevTools MCP if you want the official, vendor-maintained server, and you prefer the more popular, battle-tested option. Pick Playwright Server (Python) if you prefer its approach (mcp server exposing playwright browser-automation tools: navigate, click, fill, screenshot and scrape pages).
Can I use both Chrome DevTools MCP and Playwright Server (Python)?
Yes — MCP clients let you enable multiple servers at once. Add both configs to your client's mcpServers and use whichever tool fits the task.
Do Chrome DevTools MCP and Playwright Server (Python) work with Claude, Cursor and Windsurf?
Both do. Copy the per-client config below into Claude Desktop, Cursor, or Windsurf.