mirroir-mcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
mirroir-mcp by jfarcand | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 89 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | File SystemDeveloper ToolsProductivity |
| Language | Swift | TypeScript |
| Last commit | this month | this month |
mirroir-mcp · Summary
MCP server for controlling a real iPhone via macOS iPhone Mirroring with screen analysis and interaction capabilities.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
mirroir-mcp · Use cases
- Automated UI testing of iOS applications through AI agents
- Cross-platform automation between iOS and messaging apps
- Content interaction and posting on iOS social media apps
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
mirroir-mcp · Install
Install via script: /bin/bash -c "$(curl -fsSL https://mirroir.dev/get-mirroir.sh)"
Or via npx: npx -y mirroir-mcp install
Or via Homebrew: brew tap jfarcand/tap && brew install mirroir-mcp
For Claude Desktop, add to ~/.claude/config.json:
{
"mcpServers": {
"mirroir": {
"command": "npx",
"args": ["-y", "mirroir-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.