Skip to content

Commit 6b8cf6a

Browse files
committed
Add Xcode MCP Server documentation to README
1 parent 1829954 commit 6b8cf6a

1 file changed

Lines changed: 33 additions & 0 deletions

File tree

README.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,39 @@ Take screenshots or paste images. Vision-capable AI models analyze what they see
138138
- [Comparisons](docs/COMPARISON.md) -- vs Claude Code, Cursor, Cline, OpenClaw
139139
- [Security Model](docs/SECURITY.md) -- XPC architecture, privilege separation
140140
- [FAQ](docs/FAQ.md) -- Common questions
141+
---
142+
143+
## Model Context Protocol (MCP)
144+
145+
Agent! supports MCP (Model Context Protocol) servers for extended capabilities. Configure in Settings → MCP.
146+
147+
### Xcode MCP Server
148+
149+
Connect Agent! directly to Xcode for project-aware operations:
150+
151+
```json
152+
{
153+
"mcpServers" : {
154+
"xcode" : {
155+
"command" : "xcrun",
156+
"args" : [
157+
"mcpbridge"
158+
],
159+
"transport" : "stdio"
160+
}
161+
}
162+
}
163+
```
164+
165+
**Xcode MCP provides:**
166+
- Project-aware file operations (read/write/edit/delete)
167+
- Build and test integration
168+
- SwiftUI Preview rendering
169+
- Code snippet execution
170+
- Apple Developer Documentation search
171+
- Real-time issue tracking
172+
173+
---
141174

142175
---
143176

0 commit comments

Comments
 (0)