@@ -176,62 +176,45 @@ Toggle ON and Playwright tools appear automatically. The AI can now control brow
176176- [ Comparisons] ( docs/COMPARISON.md ) -- vs Claude Code, Cursor, Cline, OpenClaw
177177- [ Security Model] ( docs/SECURITY.md ) -- XPC architecture, privilege separation
178178- [ FAQ] ( docs/FAQ.md ) -- Common questions
179+
179180---
180181
181182## Model Context Protocol (MCP)
182183
183- Agent! supports MCP (Model Context Protocol ) servers for extended capabilities. Configure in Settings → MCP.
184+ Agent! supports [ MCP] ( https://modelcontextprotocol.io ) servers for extended capabilities. Configure in Settings → MCP Servers .
184185
185186### Xcode MCP Server
186187
187- Connect Agent! directly to Xcode for project-aware operations:
188-
189188``` json
190189{
191- "mcpServers" : {
192- "xcode" : {
193- "command" : " xcrun" ,
194- "args" : [
195- " mcpbridge"
196- ],
197- "transport" : " stdio"
190+ "mcpServers" : {
191+ "xcode" : {
192+ "command" : " xcrun" ,
193+ "args" : [" mcpbridge" ],
194+ "transport" : " stdio"
195+ }
198196 }
199- }
200197}
201198```
202199
203- ** Xcode MCP provides:**
204- - Project-aware file operations (read/write/edit/delete)
205- - Build and test integration
206- - SwiftUI Preview rendering
207- - Code snippet execution
208- - Apple Developer Documentation search
209- - Real-time issue tracking
200+ Project-aware file operations, build/test integration, SwiftUI previews, documentation search, and real-time issue tracking.
210201
211202### Playwright MCP Server
212203
213- Connect Agent! to Playwright for browser automation:
204+ See [ Playwright setup ] ( #-playwright-web-automation-optional ) above for full install instructions.
214205
215206``` json
216207{
217- "mcpServers" : {
218- "playwright" : {
219- "command" : " /opt/homebrew/bin/playwright-mcp" ,
220- "transport" : " stdio"
208+ "mcpServers" : {
209+ "playwright" : {
210+ "command" : " /opt/homebrew/bin/playwright-mcp" ,
211+ "transport" : " stdio"
212+ }
221213 }
222- }
223214}
224215```
225216
226- ** Playwright MCP provides:**
227- - Browser navigation and interaction
228- - Click, type, and form filling
229- - Screenshots and snapshots
230- - JavaScript execution
231- - Tab management
232- - Network request monitoring
233-
234- ---
217+ Cross-browser automation -- click, type, screenshot, navigate, fill forms, execute JavaScript.
235218
236219---
237220
0 commit comments