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, execute them with parameters, and automate tasks in a safe, controlled environment. By bridging the gap between AI assistants and macOS automation, this tool significantly expands what AI can help you accomplish on your Apple devices.
The Apple Shortcuts MCP Server creates a bridge between AI assistants and the Apple Shortcuts automation system on macOS. This integration allows AI models like Claude to discover and execute your shortcuts, enabling powerful automation capabilities through natural language conversations.
Before installing the Apple Shortcuts MCP Server, ensure you have:
The simplest way to use the Apple Shortcuts MCP Server is through NPX, which doesn't require manual installation:
{
"mcpServers": {
"apple-shortcuts": {
"command": "npx",
"args": ["-y", "mcp-server-apple-shortcuts"]
}
}
}
For developers who want to modify or contribute to the server:
Clone the repository:
git clone https://github.com/recursechat/mcp-server-apple-shortcuts.git
Navigate to the project directory:
cd mcp-server-apple-shortcuts
Install dependencies:
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 configured, you can interact with your Apple Shortcuts through Claude using natural language. Here are some examples:
Listing available shortcuts:
Running a shortcut:
Running shortcuts with parameters:
The Apple Shortcuts MCP Server only has access to the shortcuts available on your system and can only execute shortcuts that you've already created. It cannot create new shortcuts or modify existing ones without your explicit action in the Shortcuts app.
When a shortcut is executed, macOS may prompt for permissions depending on the shortcut's actions and your system settings.
If you encounter issues with the Apple Shortcuts MCP Server:
The Apple Shortcuts MCP Server is available under the Apache-2.0 license.