Xcode MCP Server
Bridges Claude AI with Xcode, enabling AI-powered code assistance, project management, and automated development tasks securely on your local machine.
r-huijts
Tools
set_projects_base_dir
Set the base directory where Xcode projects are stored
set_project_path
Explicitly set the path to the Xcode project to work with
get_active_project
Get information about the currently active Xcode project
read_file
Read contents of a file in the Xcode project
write_file
Write or update contents of a file in the Xcode project
analyze_file
Analyze source file for issues and suggestions
build_project
Build the current Xcode project
run_tests
Run tests for the current Xcode project
list_project_files
List all files in an Xcode project
README
Xcode MCP Server
<div align="center"> <img src="xcode_icon.svg" width="128" height="128" alt="Xcode MCP Server Icon"> </div>
A Model Context Protocol (MCP) server that brings the power of AI to your Xcode projects. This server acts as a bridge between Claude and your local Xcode development environment, enabling intelligent code assistance, project management, and automated development tasks.
<a href="https://glama.ai/mcp/servers/mmxuwmm7sc"><img width="380" height="200" src="https://glama.ai/mcp/servers/mmxuwmm7sc/badge" alt="Xcode Server MCP server" /></a>
What is Xcode MCP Server?
At its core, this server follows a client-server architecture where Claude can securely interact with your local Xcode projects:
flowchart LR
subgraph "Your Computer"
Claude["Claude Desktop"]
MCP["Xcode MCP Server"]
XP[("Xcode Projects")]
Claude <-->|"MCP Protocol\n(Commands & Results)"| MCP
MCP <-->|"Local Access\n(File & Build Operations)"| XP
end
The communication between the Xcode MCP server and your local projects happens entirely on your machine—your code is not exposed to the internet. The Model Context Protocol ensures that Claude can only perform approved operations through well-defined interfaces, giving you a secure way to let AI assist with your development while maintaining complete control.
MCP Client Compatibility
This server implements the Model Context Protocol (MCP) specification, making it compatible with any MCP-compliant client or host. While the installation instructions focus on Claude Desktop, you can use this server with:
- Self-built MCP clients
- Cursor AI
- Other MCP-compatible IDEs and tools
- Any application that implements the MCP client specification
The standardized protocol ensures consistent functionality across different clients while maintaining the same level of security and local-only operation.
Key Features
🔍 Intelligent Project Detection
- Automatically finds and connects to your active Xcode project
- Supports manual project selection for precise control
- Maintains workspace context across interactions
📁 Smart File Operations
- Read and analyze Swift, Objective-C, and project configuration files
- Create and modify source files with proper syntax and imports
- Intelligent file listing with type filtering and search
🛠 Project Management
- Access project targets, configurations, and schemes
- Analyze source files for potential issues
- Execute builds with specific configurations
- Run and manage test suites
Installation
You can install this server in three ways:
1. Using Claude Desktop with NPM Package
Update your Claude configuration file (~/Library/Application Support/Claude/claude_desktop_config.json
):
{
"mcpServers": {
"xcode": {
"command": "npx",
"args": [
"-y",
"xcode-mcp-server"
],
"env": {
"PROJECTS_BASE_DIR": "/path/to/your/xcode/projects"
}
}
}
}
2. Global NPM Installation
Install the package globally:
npm install -g @modelcontextprotocol/xcode-server
Then update your Claude configuration:
{
"mcpServers": {
"xcode": {
"command": "xcode-server",
"env": {
"PROJECTS_BASE_DIR": "/path/to/your/xcode/projects"
}
}
}
}
3. From Source
-
Clone this repository:
git clone https://github.com/r-huijts/xcode-mcp-server.git cd xcode-mcp-server
-
Install dependencies:
npm install
-
Set up environment variables:
cp .env.example .env
Edit
.env
and setPROJECTS_BASE_DIR
to your Xcode projects directory. -
Build the project:
npm run build
Then update your Claude configuration:
{
"mcpServers": {
"xcode": {
"command": "node",
"args": [
"/absolute/path/to/xcode-mcp-server/dist/index.js"
],
"env": {
"PROJECTS_BASE_DIR": "/path/to/your/xcode/projects"
}
}
}
}
Note: Replace
/path/to/your/xcode/projects
with the actual path to your Xcode projects directory.
After updating the configuration, restart Claude Desktop for the changes to take effect.
Working with the Server
The server provides a natural interface for Claude to assist with your Xcode development. Here are some ways you can interact:
Project Navigation
Ask Claude to:
- "Set my Xcode projects directory to
/Users/username/Documents/XcodeProjects
" - "What's my current active project?"
- "Switch to the MyApp.xcodeproj project"
- "Show me all Swift files in the project"
Code Creation & Modification
Get help with:
- "Create a new view called ProfileView with a preview provider"
- "Add a @Published email property to UserModel.swift"
- "Set up a modern async/await networking layer"
- "Implement Core Data models with SwiftUI bindings"
Project Analysis & Building
Let Claude assist with:
- "Analyze NetworkManager.swift for potential issues"
- "Build the project in Debug configuration"
- "Run the unit tests for the UserModel module"
- "What build schemes are available?"
Development and Debugging
Building the Project
npm run build
Running Tests
npm test
Troubleshooting
The server provides detailed logging through stderr. Common issues and their solutions:
-
Project Detection Issues
- Verify your projects directory path
- Ensure Xcode Command Line Tools are installed
- Check file permissions
-
Build Problems
- Validate Xcode installation
- Check project configurations
- Review build settings
Contributing
We welcome contributions! Whether it's:
- 🐛 Bug fixes
- ✨ New features
- 📚 Documentation improvements
- 🧪 Additional tests
Feel free to submit a Pull Request.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
MCP Package Docs Server
Facilitates LLMs to efficiently access and fetch structured documentation for packages in Go, Python, and NPM, enhancing software development with multi-language support and performance optimization.
Claude Code MCP
An implementation of Claude Code as a Model Context Protocol server that enables using Claude's software engineering capabilities (code generation, editing, reviewing, and file operations) through the standardized MCP interface.
@kazuph/mcp-taskmanager
Model Context Protocol server for Task Management. This allows Claude Desktop (or any MCP client) to manage and execute tasks in a queue-based system.
Linear MCP Server
Enables interaction with Linear's API for managing issues, teams, and projects programmatically through the Model Context Protocol.
mermaid-mcp-server
A Model Context Protocol (MCP) server that converts Mermaid diagrams to PNG images.
Jira-Context-MCP
MCP server to provide Jira Tickets information to AI coding agents like Cursor

Linear MCP Server
A Model Context Protocol server that integrates with Linear's issue tracking system, allowing LLMs to create, update, search, and comment on Linear issues through natural language interactions.

Sequential Thinking MCP Server
This server facilitates structured problem-solving by breaking down complex issues into sequential steps, supporting revisions, and enabling multiple solution paths through full MCP integration.