Description
This MCP server provides access to Siri shortcuts functionality on macOS, allowing AI assistants to list, open, and run shortcuts from the Shortcuts app. It dynamically generates tools for each available shortcut, exposing all shortcuts to the LLM for flexible automation. The server uses the macOS 'shortcuts' CLI command under the hood and supports both direct text input and file-based input for shortcut execution.
Installation
npx -y mcp-server-siri-shortcuts npm install mcp-server-siri-shortcuts git clone https://github.com/dvcrn/mcp-server-siri-shortcuts Claude Desktop Configuration
Add this configuration to your Claude Desktop config file to enable this MCP server:
Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json
Config file location: %APPDATA%\Claude\claude_desktop_config.json
Config file location: ~/.config/Claude/claude_desktop_config.json
claude_desktop_config.json
{
"mcpServers": {
"siri-shortcuts": {
"command": "npx",
"args": [
"-y",
"mcp-server-siri-shortcuts"
]
}
}
}