XcodeBuildMCP

by cameroncooke

Pending

A Model Context Protocol (MCP) server that provides Xcode-related tools for integration with AI assistants and other MCP clients.

3,974stars
181forks
TypeScript
Added 12/27/2025
AI Agentsmcpmcp-servermodel-context-protocolmodel-context-protocol-serversxcodexcodebuild
Installation
# Add to your Claude Code skills
git clone https://github.com/cameroncooke/XcodeBuildMCP
README.md
<img src="banner.png" alt="XcodeBuild MCP" width="600"/>

A Model Context Protocol (MCP) server that provides Xcode-related tools for integration with AI assistants and other MCP clients.

CI npm version License: MIT Node.js Xcode 16 macOS MCP Ask DeepWiki

Installation

Add XcodeBuildMCP to your MCP client configuration. Most clients use JSON configuration with the following server entry:

"XcodeBuildMCP": {
  "command": "npx",
  "args": ["-y", "xcodebuildmcp@latest", "mcp"]
}
<details> <summary>Cursor</summary> <br />

Add to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "XcodeBuildMCP": {
      "command": "npx",
      "args": ["-y", "xcodebuildmcp@latest", "mcp"]
    }
  }
}

Or use the quick install link:

Install MCP Server <br />

</details> <details> <summary>Claude Code</summary> <br />

Run:

claude mcp add XcodeBuildMCP -- npx -y xcodebuildmcp@latest mcp
<br /> </details> <details> <summary>Codex CLI</summary> <br />

Run:

codex mcp add XcodeBuildMCP -- npx -y xcodebuildmcp@latest mcp

Or add to ~/.codex/config.toml:

[mcp_servers.XcodeBuildMCP]
command = "npx"
args = ["-y", "xcodebuildmcp@latest", "mcp"]
<br /> </details> <details> <summary>Claude Desktop</summary> <br />

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "XcodeBuildMCP": {
      "command": "npx",
      "args": ["-y", "xcodebuildmcp@latest", "mcp"]
    }
  }
}
<br /> </details> <details> <summary>VS Code / VS Code Insiders</summary> <br />

Add to your VS Code settings JSON:

"mcp": {
  "servers": {
    "XcodeBuildMCP": {
      "command": "npx",
      "args": ["-y", "xcodebuildmcp@latest", "mcp"]
    }
  }
}

Or use the quick install links:

[<img src="https://img.shields.io/badge/VS_Code-VS_Code?style=flat-square&label=Insta...