XcodeBuildMCP vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
XcodeBuildMCP by getsentry | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 5,594 | ★ 85,748 |
| 30d uses | — | — |
| Score | 60 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
XcodeBuildMCP · Summary
MCP server providing iOS/macOS development tools for AI agents with CLI interface.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
XcodeBuildMCP · Use cases
- Automated iOS/macOS app development and testing workflows
- AI-assisted code review and debugging in Xcode projects
- Automated deployment and CI/CD integration for Apple platforms
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
XcodeBuildMCP · Install
Option A — Homebrew
brew tap getsentry/xcodebuildmcp
brew install xcodebuildmcpOption B — npm (Node.js 18+)
npm install -g xcodebuildmcp@latestClaude Desktop Configuration
Add to your Claude Desktop config.json:
"mcpServers": {
"xcodebuild": {
"command": "xcodebuildmcp",
"args": ["mcp"]
}
}filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.