Playwriter
Automate your Browser using Cursor, Claude, VS Code. More capable and context efficient than Playwright MCP.
As of June 2026, Playwriter has 10,000 users and a 4.69/5 rating from 13 reviews in the Developer Tools category.
Usersno change0%
10.0K
10,000
Ratingdown 3.9 percent−3.9%
4.69
13 reviews
Reviewsup 62.5 percent+62.5%
13
Version
0.0.94
Manifest V3
90-day change · In the last 90 days this extension 4 version updates, changed permissions.
History
9 snapshotsTracking since Apr 1, 2026.
View as table
| Date | Users | Rating | Reviews | Version |
|---|---|---|---|---|
| Apr 1, 2026 | 10.0K | 4.88 | 8 | 0.0.75 |
| Apr 5, 2026 | 10.0K | 4.88 | 8 | 0.0.78 |
| Apr 16, 2026 | 10.0K | 4.56 | 9 | 0.0.79 |
| Apr 20, 2026 | 20.0K | 4.64 | 11 | 0.0.81 |
| Apr 25, 2026 | 10.0K | 4.64 | 11 | 0.0.81 |
| May 14, 2026 | 20.0K | 4.64 | 11 | 0.0.81 |
| May 25, 2026 | 20.0K | 4.67 | 12 | 0.0.81 |
| Jun 14, 2026 | 10.0K | 4.67 | 12 | 0.0.94 |
| Jun 21, 2026 | 20.0K | 4.67 | 12 | 0.0.94 |
| Now | 10.0K | 4.69 | 13 | 0.0.94 |
Changelog
- Apr 16, 2026permissions
debugger, scripting, tabGroups, contextMenus, tabs, tabCapture, offscreen, identity, identity.email
debugger, scripting, tabGroups, contextMenus, tabs, tabCapture, offscreen, storage, identity, identity.email, webNavigation
- Apr 5, 2026permissions
debugger, tabGroups, contextMenus, tabs, tabCapture, offscreen, identity, identity.email
debugger, scripting, tabGroups, contextMenus, tabs, tabCapture, offscreen, identity, identity.email
Permissions & access
- Permissions
- debuggerscriptingtabGroupscontextMenustabstabCaptureoffscreenstorageidentityidentity.emailwebNavigation
- Host access
- <all_urls>
Screenshots
About
Control your browser via MCP. Automate your browser tasks with AI.
Like Playwright MCP but via extension. less context window usage. 10x more capable via full CDP support
Fully open source: https://github.com/remorses/playwriter
## MCP Installation
1. **Install the Chrome Extension**
Install the [Playwriter MCP Extension](https://github.com/remorses/playwriter) from the Chrome Web Store (or load it unpacked during development). Pin the extension to your Chrome toolbar for easy access.
2. **Connect to a Tab**
Click the Playwriter MCP extension icon on any tab you want to control. The icon will turn green when successfully connected.
**Icon states:**
- **Gray:** Not connected
- **Green:** Connected and ready
- **Orange badge (...):** Connecting
- **Red badge (!):** Error
3. **Add MCP to Your Agent**
Add the following configuration to your MCP client settings (e.g., Claude Desktop's `claude_desktop_config.json`):
```json
{
"mcpServers": {
"playwriter": {
"command": "npx",
"args": [
"playwriter@latest"
]
}
}
}
```
Restart your MCP client and you're ready to go! Your AI assistant can now control the browser through the extension.
## Usage
### Using the MCP
**Important:** Before using the MCP, you must enable the extension on at least one tab:
1. Pin the Playwriter extension to your Chrome toolbar (click the puzzle icon)
2. Navigate to a tab you want to control
3. Click the extension icon - it will turn green when connected
Once enabled on one or more tabs, your AI assistant can:
- Control all enabled tabs through the `execute` tool
- Switch between tabs using playwright's context and page APIs
- Create new tabs programmatically
- Run any Playwright code against your browser tabs
The MCP will automatically start a relay server and connect to your enabled browser tabs.
### Using with Playwright
You can use playwriter programmatically with playwright-core:
```typescript
import { chromium } from 'playwright-core'
import { startPlayWriterCDPRelayServer, getCdpUrl } from 'playwriter'
const server = await startPlayWriterCDPRelayServer()
const browser = await chromium.connectOverCDP(getCdpUrl())
const context = browser.contexts()[0]
const page = context.pages()[0]
await page.goto('https://example.com')
await page.screenshot({ path: 'screenshot.png' })
await browser.close()
server.close()
```
## Comparison
### vs Playwright MCP
Playwriter uses a Chrome extension instead of launching a full new Chrome window. This approach has several benefits:
- **Collaborate with your agent** - Work alongside the AI in the same browser, helping it when stuck on captchas or complex interactions
- **Start on existing pages** - Launch the MCP on a page in your existing browser to replicate bugs exactly as they occur
- **Reuse your extensions** - Keep using ad blockers, password managers, and other extensions you already have installed
- **Bypass automation detection** - Disable CDP/automation temporarily by disconnecting the extension to bypass detection systems like Google login, then reconnect to continue automation. With Playwright's headless Chrome, automation is always detected and blocks your workflow
- **Less resource usage** - No need to spawn a separate Chrome instance, saving memory and CPU
- **Single browser workflow** - Everything happens in your main Chrome browser, no switching between windows
### vs BrowserMCP
Playwriter has access to the full playwright API available, it can send any CDP command via the playwright methods. It only uses 1 tool `execute` to send playwright code snippets. This means that the LLM can reuse its knowledge about playwright and less context window is used to expose browser automations tools.
Playwriter is also more capable because it exposes the full playwright API instead of only a few tools.
For comparison here are the tools supported by BrowserMCP:
Navigation:
- `browsermcp_browser_navigate` - Navigate to a URL
- `browsermcp_browser_go_back` - Go back to the previous page
- `browsermcp_browser_go_forward` - Go forward to the next page
Page Inspection:
- `browsermcp_browser_snapshot` - Capture accessibility snapshot of the current page (use this to get references to elements)
- `browsermcp_browser_screenshot` - Take a screenshot of the current page
- `browsermcp_browser_get_console_logs` - Get console logs from the browser
Interactions:
- `browsermcp_browser_click` - Click on an element (requires element reference from snapshot)
- `browsermcp_browser_hover` - Hover over an element
- `browsermcp_browser_type` - Type text into an editable element (with optional submit)
- `browsermcp_browser_select_option` - Select an option in a dropdown
- `browsermcp_browser_press_key` - Press a key on the keyboard
Utilities:
- `browsermcp_browser_wait` - Wait for a specified time in seconds
## Security
Playwriter is designed with security in mind, ensuring that only you can control your browser.
### How It Works
1. **Local WebSocket Server**: When the MCP starts, it launches a singleton WebSocket server on `localhost:19988`
2. **Dual Connection**: Both the Chrome extension and MCP client connect to this local server
3. **User-Controlled Access**: The extension can only control tabs where you explicitly clicked the extension icon (green icon indicates connected tabs)
4. **Localhost-Only**: The WebSocket server does not send CORS headers, preventing any web pages or remote servers from connecting to it - only processes running on your local machine can establish a connection
5. **Explicit Consent**: Chrome displays an "automation banner" on controlled tabs, making it obvious when a tab is being automated
### What Can Be Controlled
- **Only enabled tabs**: Tabs you explicitly connected by clicking the extension icon
- **New tabs created by automation**: Tabs created programmatically through Playwright commands
- **Nothing else**: Other browser tabs, your browsing history, or any tabs you haven't explicitly connected remain inaccessible
### What Cannot Happen
- **No remote access**: External websites or servers cannot connect to the WebSocket (localhost-only)
- **No passive monitoring**: The extension cannot read or monitor tabs you haven't connected
- **No automatic spreading**: The debugger won't automatically attach to new tabs you open manually
This architecture ensures that browser automation only happens with your explicit permission on tabs you choose.Technical
- Version
- 0.0.94
- Manifest
- V3
- Size
- 107KiB
- Min Chrome
- 88
- Languages
- 1
- Featured
- No
Metadata
- ID
- jfeammnjpkecdekppnclgkkffahnhfhe
- Developer ID
- u6d4851c633ac8cfaa19c153547625e58
- Developer Email
- [email protected]
- Created
- Nov 24, 2025
- Last Updated (Store)
- May 22, 2026
- Last Scraped
- Jun 21, 2026
- Website
- playwriter.dev
- Support URL
- https://playwriter.dev
- Privacy Policy
- —
Similar extensions
Alternatives to Playwriter, ranked by description similarity.
Playwright Extension
Connect your browser to AI agents through Playwright MCP server and CLI. Enables AI-driven web testing, debugging, and automation.
40.0K
★ 4.9
Real Browser MCP
Let AI agents control your real browser - your tabs, your sessions, your logins
246
★ 5.0
Blueprint MCP for Chrome
Browser automation for Claude without token limits. Uses CSS selectors, not snapshots. Open source, zero telemetry.
1.0K
★ 5.0
Browser Use for AI Agents
A local-only extension bridge for multiplexed browser MCP. Modified by [KnotFalse]; inspired by Blueprint MCP
120
MCP Chrome Extension - AI Browser Control
Turn Chrome into an MCP server. Let AI control your browser: navigate, click, fill forms, and take screenshots.
775
Browser Agent Extension
AI Agent browser control extension - MCP + WebSocket
82
mcpX Browser Automation
Browser automation extension that connects to locally installed mcpX server. Requires npm package installation.
8
WebMCP
WebMCP turns your browser into a programmable interface—letting AI navigate, click, and type on any website, exactly like you would.
133
★ 5.0
Data sourced from the Chrome Web Store · last verified Jun 21, 2026.