getsentry/XcodeBuildMCP
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
Overview
getsentry/XcodeBuildMCP is a TypeScript MCP server licensed under MIT. A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects. Topics: mcp, mcp-server, model-context-protocol, model-context-protocol-servers, xcode, xcodebuild, tag-production.
Ranked #18 out of 25632 indexed tools.
In the top 1% of all indexed tools.
Has 4,720 GitHub stars.
Has 32 contributors.
Actively maintained with commits in the last week.
Ecosystem
TypeScript MIT
mcpmcp-servermodel-context-protocolmodel-context-protocol-serversxcodexcodebuildtag-production
Signal Breakdown
Stars 4,720
Freshness 4d ago
Issue Health 89%
Contributors 32
Dependents 4
Forks 222
Description Good
License MIT
How to Improve
Description low impact
Matched Queries
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 →
Are you the maintainer? Claim this listing