Xcodemcpwrapper
X

Xcodemcpwrapper

Xcode MCP bridging tool wrapper that solves the compatibility issue between the MCP bridge of Xcode 26.3 and clients such as Cursor that strictly follow the MCP specification, ensuring the normal operation of the tool by converting the response format
2.5 points
3.8K

What is XcodeMCPWrapper?

XcodeMCPWrapper is an intelligent adapter that fixes the compatibility issue between the MCP bridging tool (mcpbridge) of Xcode 26.3 and AI development tools (such as Cursor) that strictly follow the MCP specification. The response format returned by Xcode's original tool does not conform to the MCP specification, which causes some AI tools to be unable to use Xcode's functions normally. This wrapper automatically corrects the response format, allowing all AI assistants to seamlessly use Xcode's development tools.

How to use XcodeMCPWrapper?

It's very simple to use: 1) Make sure Xcode 26.3+ is installed and the MCP function is enabled; 2) Choose an installation method (uvx is recommended); 3) Configure the MCP server in your AI development tool (Cursor, Claude Code, etc.); 4) Restart the tool to start using Xcode's functions. The whole process only takes a few minutes.

Applicable scenarios

Suitable for all developers who use AI assistants for iOS/macOS development. In particular: 1) Users of AI development tools such as Cursor, Claude Code, and Codex CLI; 2) Developers who need AI assistants to help build, test, and debug Xcode projects; 3) Teams that want to improve the efficiency of Xcode development; 4) Users who encounter problems with the Xcode MCP tool not working properly in AI assistants.

Main features

MCP specification compatibility fix
Automatically corrects the response format returned by Xcode mcpbridge to ensure compliance with the MCP specification, solving the problem that strict clients such as Cursor cannot use Xcode tools.
Broker Mode
Supports the broker mode, allowing multiple short-lived MCP client sessions to share a persistent upstream bridging session, reducing the connection confirmation pop-up window of Xcode.
Web UI monitoring panel
An optional visual monitoring panel that provides real-time metrics, tool usage analysis, audit logs, and a request inspector to help monitor MCP tool calls.
Multi-client support
Fully supports various AI development tools such as Cursor, Claude Code, Codex CLI, Zed Agent, and Kimi CLI, with simple configuration.
Terminal monitoring interface (TUI)
Provides a terminal user interface to monitor MCP tool calls and system status in real-time in the command line.
Easy installation
Provides multiple installation methods: one-click installation with uvx, pip installation, and manual installation scripts to meet the needs of different users.
Advantages
Solve compatibility issues: Fix the compatibility between Xcode and strict MCP clients, allowing all AI tools to use Xcode's functions
Excellent performance: The conversion overhead is extremely low (<0.01ms), and the memory usage is small (<10MB), hardly affecting the performance
Flexible configuration: Supports multiple installation and configuration methods to adapt to different users' workflows
Comprehensive monitoring: Provides two monitoring methods, Web UI and TUI, to help users understand the tool usage
Active community: An open-source project with continuous updates, detailed documentation, and troubleshooting guides
Limitations
Dependent on a specific version: Requires Xcode 26.3+ and does not support older versions of Xcode
Exclusive to macOS: Only applicable to the macOS system and cannot be used on Windows or Linux
Needs to be manually enabled: The MCP function must be manually enabled in the Xcode settings
Initial configuration: Some configuration steps are required for the first use, which may be a bit complicated for new users
Limitations in broker mode: There may be an issue with the timing of the Xcode permission pop-up window during the first connection in the broker mode

How to use

Enable the Xcode MCP function
Open Xcode → Settings (⌘,) → Select Intelligence → Enable Xcode Tools under Model Context Protocol. This is a necessary step; otherwise, the tool will not work.
Choose an installation method
It is recommended to use uvx for one-click installation: No manual installation is required, and uvx will automatically download and run. You can also choose pip installation or manual installation.
Configure the AI development tool
Edit the corresponding configuration file according to the AI tool you are using. Here is an example of the configuration for Cursor (the broker mode is recommended).
Restart and verify
Restart your AI development tool and verify whether the Xcode tools are available. You can ask the AI assistant questions about the Xcode project to test.

Usage examples

Project building and running
When you need an AI assistant to help build and run an Xcode project, you can directly let the AI execute the build command without manually operating Xcode.
Test execution
When you need to run project tests, you can let the AI assistant execute the test suite and summarize the test results.
Code search and analysis
When searching for specific files or code patterns in a large project, the AI assistant can quickly search and return the results.
Error diagnosis
When the project build fails, the AI assistant can analyze the build log to help diagnose the problem.

Frequently Asked Questions

Why does my AI tool show that it found 0 Xcode tools?
What is the difference between the broker mode and the direct mode?
What should I do if I cannot access the Web UI panel?
Which AI development tools are supported?
Do I need to restart my computer after installation?
Is this tool safe? Will it leak my code?

Related resources

GitHub repository
Project source code, issue tracking, and the latest version
MCP protocol specification
Official specification document of the Model Context Protocol
Xcode 26.4 release notes
Apple's official Xcode release notes, including MCP-related updates
Detailed guide for the broker mode
Detailed configuration, migration, and operation guide for the broker mode
Web UI setup guide
Detailed configuration and usage instructions for the Web UI monitoring panel
Troubleshooting guide
Solutions and diagnostic steps for common problems

Installation

Copy the following command to your Client for configuration
{
  "mcpServers": {
    "xcode-tools": {
      "command": "uvx",
      "args": ["--from", "mcpbridge-wrapper", "mcpbridge-wrapper", "--broker"]
    }
  }
}

{
  "mcpServers": {
    "xcode-tools": {
      "command": "uvx",
      "args": [
        "--from",
        "mcpbridge-wrapper[webui]",
        "mcpbridge-wrapper",
        "--broker",
        "--web-ui",
        "--web-ui-config",
        "/Users/YOUR_USERNAME/.mcpbridge_wrapper/webui.json"
      ]
    }
  }
}

{
  "mcpServers": {
    "xcode-tools": {
      "command": "uvx",
      "args": ["--from", "mcpbridge-wrapper", "mcpbridge-wrapper"]
    }
  }
}

{
  "mcpServers": {
    "xcode-tools": {
      "command": "uvx",
      "args": [
        "--from",
        "mcpbridge-wrapper[webui]",
        "mcpbridge-wrapper",
        "--web-ui",
        "--web-ui-port",
        "8080"
      ]
    }
  }
}

{
  "mcpServers": {
    "xcode-tools": {
      "command": "/Users/YOUR_USERNAME/bin/xcodemcpwrapper",
      "args": []
    }
  }
}

{
  "mcpServers": {
    "xcode-tools": {
      "command": "/Users/YOUR_USERNAME/bin/xcodemcpwrapper",
      "args": ["--web-ui", "--web-ui-port", "8080"]
    }
  }
}

{
  "mcpServers": {
    "xcode-tools": {
      "command": "/path/to/XcodeMCPWrapper/.venv/bin/mcpbridge-wrapper"
    }
  }
}

{
  "mcpServers": {
    "xcode-tools": {
      "command": "/path/to/XcodeMCPWrapper/.venv/bin/mcpbridge-wrapper",
      "args": ["--web-ui", "--web-ui-port", "8080"]
    }
  }
}
Note: Your key is sensitive information, do not share it with anyone.

Alternatives

V
Vestige
Vestige is an AI memory engine based on cognitive science. By implementing 29 neuroscience modules such as prediction error gating, FSRS - 6 spaced repetition, and memory dreaming, it provides long - term memory capabilities for AI. It includes a 3D visualization dashboard and 21 MCP tools, runs completely locally, and does not require the cloud.
Rust
5.5K
4.5 points
B
Better Icons
An MCP server and CLI tool that provides search and retrieval of over 200,000 icons, supports more than 150 icon libraries, and helps AI assistants and developers quickly obtain and use icons.
TypeScript
6.7K
4.5 points
A
Assistant Ui
assistant - ui is an open - source TypeScript/React library for quickly building production - grade AI chat interfaces, providing composable UI components, streaming responses, accessibility, etc., and supporting multiple AI backends and models.
TypeScript
7.4K
5 points
A
Apify MCP Server
The Apify MCP Server is a tool based on the Model Context Protocol (MCP) that allows AI assistants to extract data from websites such as social media, search engines, and e-commerce through thousands of ready-to-use crawlers, scrapers, and automation tools (Apify Actors). It supports OAuth and Skyfire proxy payment and can be integrated into MCP clients such as Claude and VS Code through HTTPS endpoints or local stdio.
TypeScript
7.6K
5 points
R
Rsdoctor
Rsdoctor is a build analysis tool specifically designed for the Rspack ecosystem, fully compatible with webpack. It provides visual build analysis, multi - dimensional performance diagnosis, and intelligent optimization suggestions to help developers improve build efficiency and engineering quality.
TypeScript
9.4K
5 points
N
Next Devtools MCP
The Next.js development tools MCP server provides Next.js development tools and utilities for AI programming assistants such as Claude and Cursor, including runtime diagnostics, development automation, and document access functions.
TypeScript
10.8K
5 points
T
Testkube
Testkube is a test orchestration and execution framework for cloud-native applications, providing a unified platform to define, run, and analyze tests. It supports existing testing tools and Kubernetes infrastructure.
Go
6.5K
5 points
M
MCP Windbg
An MCP server that integrates AI models with WinDbg/CDB for analyzing Windows crash dump files and remote debugging, supporting natural language interaction to execute debugging commands.
Python
10.6K
5 points
N
Notion Api MCP
Certified
A Python-based MCP Server that provides advanced to-do list management and content organization functions through the Notion API, enabling seamless integration between AI models and Notion.
Python
20.4K
4.5 points
M
Markdownify MCP
Markdownify is a multi-functional file conversion service that supports converting multiple formats such as PDFs, images, audio, and web page content into Markdown format.
TypeScript
34.3K
5 points
G
Gitlab MCP Server
Certified
The GitLab MCP server is a project based on the Model Context Protocol that provides a comprehensive toolset for interacting with GitLab accounts, including code review, merge request management, CI/CD configuration, and other functions.
TypeScript
25.4K
4.3 points
D
Duckduckgo MCP Server
Certified
The DuckDuckGo Search MCP Server provides web search and content scraping services for LLMs such as Claude.
Python
72.7K
4.3 points
U
Unity
Certified
UnityMCP is a Unity editor plugin that implements the Model Context Protocol (MCP), providing seamless integration between Unity and AI assistants, including real - time state monitoring, remote command execution, and log functions.
C#
31.1K
5 points
F
Figma Context MCP
Framelink Figma MCP Server is a server that provides access to Figma design data for AI programming tools (such as Cursor). By simplifying the Figma API response, it helps AI more accurately achieve one - click conversion from design to code.
TypeScript
65.4K
4.5 points
G
Gmail MCP Server
A Gmail automatic authentication MCP server designed for Claude Desktop, supporting Gmail management through natural language interaction, including complete functions such as sending emails, label management, and batch operations.
TypeScript
21.0K
4.5 points
C
Context7
Context7 MCP is a service that provides real-time, version-specific documentation and code examples for AI programming assistants. It is directly integrated into prompts through the Model Context Protocol to solve the problem of LLMs using outdated information.
TypeScript
98.2K
4.7 points
AIBase
Zhiqi Future, Your AI Solution Think Tank
© 2026AIBase