mcp-server-siri-shortcuts vs memory
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-siri-shortcuts by dvcrn | memory by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 187 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | ProductivityDeveloper ToolsCommunication | Knowledge GraphAI / LLM 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.
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
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
memory · Use cases
- Personalizing AI assistant interactions by remembering user preferences, history, and relationships
- Building context-aware chat applications that maintain conversation history
- Creating knowledge bases that persist across AI model sessions
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"
}
}
}
}memory · Install
Installation
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}VS Code
Use one-click installation buttons or manually configure in .vscode/mcp.json:
{
"servers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}Docker
{
"mcpServers": {
"memory": {
"command": "docker",
"args": ["run", "-i", "-v", "claude-memory:/app/dist", "--rm", "mcp/memory"]
}
}
}