Lists all available Apple Shortcuts on the system
Runs a specified Apple Shortcut with optional input parameters
The Apple Shortcuts MCP server enables AI assistants like Claude to interact with and control Apple Shortcuts on macOS. This integration allows AI models to list available shortcuts, trigger them with parameters, and automate tasks on your Mac in a safe and controlled manner. By connecting AI assistants to your local automation workflows, this server bridges the gap between conversational AI and practical system automation. It provides a simple yet powerful interface that maintains user control while expanding what AI assistants can do on your behalf.
The Apple Shortcuts MCP server allows AI assistants to interact with your macOS Shortcuts, enabling automation of tasks directly through conversational interfaces. This server acts as a bridge between AI models and your local automation workflows.
Before setting up the Apple Shortcuts MCP server, ensure you have:
You can install and use the Apple Shortcuts MCP server in two ways:
The simplest way to use the server is through NPX, which will automatically download and run the latest version. Add the following configuration to your Claude Desktop settings:
{
"mcpServers": {
"apple-shortcuts": {
"command": "npx",
"args": ["-y", "mcp-server-apple-shortcuts"]
}
}
}
If you prefer to build and run the server locally:
Clone the repository:
git clone git@github.com:recursechat/mcp-server-apple-shortcuts.git
Navigate to the project directory and install dependencies:
cd mcp-server-apple-shortcuts
npm install
Build the project:
npm run build
Configure Claude Desktop to use your local build:
{
"mcpServers": {
"apple-shortcuts": {
"command": "npx",
"args": ["/path/to/mcp-server-apple-shortcuts/build/index.js"]
}
}
}
Once the server is configured, you can interact with your Apple Shortcuts through your AI assistant. Here are some examples of what you can do:
The server handles the communication between your AI assistant and the macOS Shortcuts app, allowing for seamless integration of AI capabilities with your existing automation workflows.
If you encounter issues with the Apple Shortcuts MCP server: