MCP Catalogs
Home

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
Score6077
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
File SystemDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last committhis monththis 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 xcodebuildmcp

Option B — npm (Node.js 18+)

npm install -g xcodebuildmcp@latest

Claude 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.

Comparison generated from public README + GitHub signals. Last updated automatically.