docs: improve session isolation, extract MCP to separate file, add remote CLI

This commit is contained in:
Tommy D. Rossi
2026-01-24 15:10:53 +01:00
parent ad6ce1c2a8
commit 38b1b6d3ed
4 changed files with 258 additions and 361 deletions
+98
View File
@@ -0,0 +1,98 @@
# MCP Setup
> **Note:** CLI is the recommended way to use Playwriter. See [README.md](./README.md) for CLI usage.
Add to your MCP client settings:
```json
{
"mcpServers": {
"playwriter": {
"command": "npx",
"args": ["-y", "playwriter@latest"]
}
}
}
```
Or auto-configure:
```sh
npx -y @playwriter/install-mcp playwriter@latest
```
## Using the MCP
1. Enable the extension on at least one tab (click icon → turns green)
2. MCP automatically starts relay server and connects to enabled tabs
3. Use the `execute` tool to run Playwright code
The MCP exposes:
- `execute` tool - run Playwright code snippets
- `reset` tool - reconnect if connection issues occur
## Environment Variables
### `PLAYWRITER_AUTO_ENABLE`
Auto-create a tab when Playwright connects (no manual extension click needed).
> **Note:** CLI enables this by default. This is only needed for MCP server usage.
```json
{
"mcpServers": {
"playwriter": {
"command": "npx",
"args": ["-y", "playwriter@latest"],
"env": {
"PLAYWRITER_AUTO_ENABLE": "1"
}
}
}
}
```
The auto-created tab starts at `about:blank`. Navigate it to any URL.
## Remote Agents (Devcontainers, VMs, SSH)
Run agents in isolated environments while controlling Chrome on your host.
**On host (where Chrome runs):**
```bash
npx -y playwriter serve --token <secret>
```
**In container/VM (where agent runs):**
```json
{
"mcpServers": {
"playwriter": {
"command": "npx",
"args": ["-y", "playwriter@latest", "--host", "host.docker.internal", "--token", "<secret>"]
}
}
}
```
Or with environment variables:
```json
{
"mcpServers": {
"playwriter": {
"command": "npx",
"args": ["-y", "playwriter@latest"],
"env": {
"PLAYWRITER_HOST": "host.docker.internal",
"PLAYWRITER_TOKEN": "<secret>"
}
}
}
}
```
Use `host.docker.internal` for devcontainers, or your host's IP for VMs/SSH.