mcp-server-siri-shortcuts vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-siri-shortcuts by dvcrn | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 187 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | ProductivityDeveloper ToolsCommunication | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 3 mo ago | this month |
mcp-server-siri-shortcuts · Summary
MCP server that lets LLMs interact with macOS Siri shortcuts through listing, opening, and executing them.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
mcp-server-siri-shortcuts · Use cases
- Automate repetitive iOS tasks through voice commands to AI assistants
- Create workflows where AI triggers complex shortcut sequences
- Develop productivity tools that bridge AI capabilities with iOS automation
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
mcp-server-siri-shortcuts · Install
npm install -g mcp-server-siri-shortcutsAdd to your Claude Desktop configuration:
{
"mcpServers": {
"siri-shortcuts": {
"command": "npx",
"args": ["mcp-server-siri-shortcuts"],
"env": {
"GENERATE_SHORTCUT_TOOLS": "true",
"INJECT_SHORTCUT_LIST": "false"
}
}
}
}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.