xc-mcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
xc-mcp by conorluddy | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 84 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM Tools | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 3 mo ago | this month |
xc-mcp · Summary
Intelligent Xcode MCP server for iOS development with progressive disclosure to reduce context usage.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
xc-mcp · Use cases
- Automated iOS application testing and QA workflows
- AI-driven Xcode project builds and deployment
- Accessibility-first iOS UI automation for AI agents
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
xc-mcp · Install
# Install globally
npm install -g xc-mcp
# Or run without installation
npx xc-mcp**MCP Configuration** (Claude Desktop):
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"xc-mcp": {
"command": "npx",
"args": ["-y", "xc-mcp"]
}
}
}**Minimal Mode** (for clients that don't support defer_loading):
{
"mcpServers": {
"xc-mcp": {
"command": "npx",
"args": ["-y", "xc-mcp", "--mini"]
}
}
}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.