XcodeAutoPilot is an MCP server that gives Claude Code the ability to build, analyze, and fix Xcode errors โ autonomously.
Every tool returns structured JSON โ no parsing raw xcodebuild output.
Type xbuild or xap build in any prompt โ
Claude Code detects the keyword and runs the full workflow automatically.
Requires Node.js 18+, Claude Code, and an Xcode project.
git clone https://github.com/leejh08/XcodeAutoPilot.git cd XcodeAutoPilot npm install && npm run build
Copy .mcp.json.example to .mcp.json and set your project path:
// .mcp.json { "mcpServers": { "xcode-autopilot": { "command": "node", "args": ["/path/to/XcodeAutoPilot/dist/index.js"] } } }
bash scripts/install-xap.sh
# Restart Claude Code โ then type "xbuild" to go.