Google PageRank for AI agents. 25,000+ tools indexed.

XcodeBuildMCP by getsentry

#318 of 1941 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

Only 1 platform listed — publishing to more platforms improves your score

Badge

AgentRank score for XcodeBuildMCP by getsentry
[![AgentRank](https://agentrank-ai.com/api/badge/skill/glama-getsentry--XcodeBuildMCP)](https://agentrank-ai.com/skill/glama-getsentry--XcodeBuildMCP/?utm_source=badge&utm_medium=readme&utm_campaign=agentrank_badge)
<a href="https://agentrank-ai.com/skill/glama-getsentry--XcodeBuildMCP/?utm_source=badge&utm_medium=readme&utm_campaign=agentrank_badge"><img src="https://agentrank-ai.com/api/badge/skill/glama-getsentry--XcodeBuildMCP" alt="AgentRank"></a>

Supported Platforms

MCP

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 →