XcodeBuildMCP by getsentry
67 score
XcodeBuildMCP
Ranked #318 out of 1941 indexed tools.Has 4,902 GitHub stars.Has 32 contributors.Actively maintained with commits in the last week.
Is this your tool? Claim this listing to add maintainer context, get a verified badge, and unlock analytics.
Claim listing → Signal Breakdown
Installs 11k
Freshness today
Issue Health 82%
Stars 4,902
Platform Breadth 1 platform
Contributors 32
Description Brief
How to Improve
Platforms medium impact
Supported Platforms
From the README
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
## Installation
XcodeBuildMCP ships as a single package with two modes: a **CLI** for direct terminal use and an **MCP server** for AI coding agents. Both installation methods give you both modes.
### Option A — Homebrew
```bash
brew tap getsentry/xcodebuildmcp
brew install xcodebuildmcp
```
Use the CLI:
```bash
xcodebuildmcp --help
```
MCP client config:
```json
"XcodeBuildMCP": {
"command": "xcodebuildmcp",
"args": ["mcp"]
}
```
Upgrade later with `brew update && brew upgrade xcodebuildmcp`.
### Option B — npm / npx (Node.js 18+)
**For CLI use**, install globally:
```bash
npm install -g xcodebuildmcp@latest
xcodebuildmcp --help
```
**For MCP server only**, no global install needed — add directly to your client config:
```json
"XcodeBuildMCP": {
"command": "npx",
"args": ["-y", "xcodebuildmcp@latest", "mcp"]
}
```
To pin a specific version Read full README on GitHub →