You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+59Lines changed: 59 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -92,6 +92,42 @@ Work on multiple tasks simultaneously. Each tab has its own project folder and c
92
92
### 📸 Screenshot & Vision
93
93
Take screenshots or paste images. Vision-capable AI models analyze what they see -- describe content, read text, spot UI issues.
94
94
95
+
### 🎭 Playwright Web Automation (Optional)
96
+
97
+
Full cross-browser automation via [Microsoft Playwright MCP](https://github.com/microsoft/playwright-mcp). Click, type, screenshot, and navigate any website in Chrome, Firefox, or WebKit -- all controlled by the AI.
98
+
99
+
**Setup (one-time):**
100
+
101
+
```bash
102
+
# 1. Install Node.js (if not already installed)
103
+
brew install node
104
+
105
+
# 2. Install Playwright MCP server globally
106
+
npm install -g @playwright/mcp@latest
107
+
108
+
# 3. Install browser binaries
109
+
npx playwright install chromium
110
+
```
111
+
112
+
**Configure in Agent!:**
113
+
114
+
Go to Settings → MCP Servers → Add Server, paste this JSON:
115
+
116
+
```json
117
+
{
118
+
"mcpServers": {
119
+
"playwright": {
120
+
"command": "/opt/homebrew/bin/playwright-mcp",
121
+
"transport": "stdio"
122
+
}
123
+
}
124
+
}
125
+
```
126
+
127
+
> **Note:** If you installed Node.js via nvm or another method, replace `/opt/homebrew/bin/playwright-mcp` with the output of `which playwright-mcp`.
128
+
129
+
Toggle ON and Playwright tools appear automatically. The AI can now control browsers directly.
130
+
95
131
---
96
132
97
133
## Privacy & Safety
@@ -169,6 +205,29 @@ Connect Agent! directly to Xcode for project-aware operations:
169
205
- Apple Developer Documentation search
170
206
- Real-time issue tracking
171
207
208
+
### Playwright MCP Server
209
+
210
+
Connect Agent! to Playwright for browser automation:
0 commit comments