.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/getsentry/xcodebuildmcp
home/mcp-servers/getsentry/xcodebuildmcp
getsentry avatar

xcodebuildmcp

bygetsentry· 3 MCP servers

Installs

341k

Stars

6.2k

Forks

303

Category

Mobile Development

View on GitHub

TL;DR

XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.

How to install xcodebuildmcp?

getsentry/xcodebuildmcp
$git clone https://github.com/getsentry/xcodebuildmcp

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install xcodebuildmcp by running `git clone https://github.com/getsentry/xcodebuildmcp`, then use it for the current task and follow its documentation at https://github.com/getsentry/xcodebuildmcp.

Files · 1

View on GitHub
README.md
1<img src="assets/banner.png" alt="XcodeBuild MCP" width="600"/>
2 
3A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
4 
5[![CI](https://github.com/getsentry/XcodeBuildMCP/actions/workflows/ci.yml/badge.svg)](https://github.com/getsentry/XcodeBuildMCP/actions/workflows/ci.yml)
6[![npm version](https://badge.fury.io/js/xcodebuildmcp.svg)](https://badge.fury.io/js/xcodebuildmcp) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![Node.js](https://img.shields.io/badge/node->=18.x-brightgreen.svg)](https://nodejs.org/) [![Xcode 16](https://img.shields.io/badge/Xcode-16-blue.svg)](https://developer.apple.com/xcode/) [![macOS](https://img.shields.io/badge/platform-macOS-lightgrey.svg)](https://www.apple.com/macos/) [![MCP](https://img.shields.io/badge/MCP-Compatible-green.svg)](https://modelcontextprotocol.io/) [![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/getsentry/XcodeBuildMCP) [![AgentAudit Security](https://img.shields.io/badge/AgentAudit-Safe-brightgreen?logo=data:image/svg%2Bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0id2hpdGUiIGQ9Ik0xMiAxTDMgNXY2YzAgNS41NSAzLjg0IDEwLjc0IDkgMTIgNS4xNi0xLjI2IDktNi40NSA5LTEyVjVsLTktNHoiLz48L3N2Zz4=)](https://www.agentaudit.dev/skills/xcodebuildmcp)
7 
8## Installation
9 
10XcodeBuildMCP ships as a single package with two modes: a **CLI** for direct terminal use and an **MCP server** for AI coding agents. Either install method gives you both.
11 
12### Option A — Homebrew
13 
14```bash
15brew tap getsentry/xcodebuildmcp
16brew install xcodebuildmcp
17```
18 
19### Option B — npm (Node.js 18+)
20 
21```bash
22npm install -g xcodebuildmcp@latest
23```
24 
25Verify either install:
26```bash
27xcodebuildmcp --help
28```
29 
30### Connect your MCP client
31 
32Drop-in config snippets for Cursor, Claude Code, Codex, can be found in the official docs page [MCP Clients](https://xcodebuildmcp.com/docs/clients). Most clients can also run the MCP server on demand via `npx -y xcodebuildmcp@latest mcp` without a global install.
33 
34## Requirements
35 
36- macOS 14.5 or later
37- Xcode 16.x or later
38- Node.js 18.x or later (not required for Homebrew installation)
39 
40## Skills
41 
42XcodeBuildMCP now includes two optional agent skills:
43 
44- **MCP Skill**: Primes the agent with instructions on how to use the MCP server's tools (optional when using the MCP server).
45 
46- **CLI Skill**: Primes the agent with instructions on how to navigate the CLI (recommended when using the CLI).
47 
48 
49To install with a global binary:
50 
51```bash
52xcodebuildmcp init
53```
54 
55Or install directly via npx without a global install:
56 
57```bash
58npx -y xcodebuildmcp@latest init
59```
60 
61For further information on installing skills, see [Agent Skills](https://xcodebuildmcp.com/docs/skills).
62 
63## Notes
64 
65- XcodeBuildMCP requests xcodebuild to skip macro validation to avoid errors when building projects that use Swift Macros.
66- Device tools require code signing to be configured in Xcode. See [Device Code Signing](https://xcodebuildmcp.com/docs/device-signing).
67 
68## Privacy
69 
70XcodeBuildMCP uses Sentry for internal runtime error telemetry only. For details and opt-out instructions, see [Privacy & Telemetry](https://xcodebuildmcp.com/docs/privacy).
71 
72## CLI
73 
74XcodeBuildMCP provides a unified command-line interface. The `mcp` subcommand starts the MCP server, while all other commands provide direct terminal access to tools:
75 
76```bash
77# Install globally
78npm install -g xcodebuildmcp@latest
79 
80# Start the MCP server (for MCP clients)
81xcodebuildmcp mcp
82 
83# List available tools
84xcodebuildmcp tools
85 
86# Build for simulator
87xcodebuildmcp simulator build --scheme MyApp --project-path ./MyApp.xcodeproj
88 
89# Prepare portable test products without running tests
90xcodebuildmcp simulator build --scheme MyApp --project-path ./MyApp.xcodeproj --simulator-name "iPhone 17" --build-for-testing --test-products-path ./MyApp.xctestproducts
91 
92# Run previously prepared te

Preview

getsentry/xcodebuildmcpgetsentry/xcodebuildmcp

A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.

[![CI](https://github.com/getsentry/XcodeBuildMCP/actions/workflows/ci.yml/badge.svg)](https://github.com/getsentry/XcodeBuildMCP/actions/workflows/ci.yml)

[![npm version](https://badge.fury.io/js/xcodebuildmcp.svg)](https://badge.fury.io/js/xcodebuildmcp) [![License: MIT](https://img.shields.io/badge/License-MIT-y

Repogetsentry/xcodebuildmcp
TypeMCP Servers
CategoryMobile Development
UpdatedJul 2026
LicenseMIT
First seenJul 27, 2026

Tags

MCPmcpmcp-server

Related

6 picks
Type
  1. callstack avataragent-deviceLet AI agents inspect, control, and debug real iOS, Android, desktop, and TV appsMCP ServersJul 2026517k3.7k
  2. mobile-next avatarmobile-mcpMCP server for iOS and Android Mobile Development, Automation and TestingMCP ServersJul 202679k5.7k
  3. minhalvp avatarandroid-mcp-serverAn MCP server for android automationMCP ServersMay 20251.7k789
  4. cursortouch avatarandroid-mcpLightweight MCP Server for Android Operating SystemMCP ServersJul 20261.7k782
  5. runablehq avatarmobile-mcpA MCP server to control your mobile devicesMCP ServersApr 202589665
  6. chaixueyuan avatarweapp-agent-mcpAgent-first MCP server for WeChat Mini Program debugging & automation via WeChat DevTools.MCP ServersJul 202683314