A Model Context Protocol (MCP) server that lets AI assistants like Claude control Apple Shortcuts automations. This enables AI models to trigger shortcuts and automate tasks on macOS in a safe and controlled way. The Model Context Protocol (MCP) is a system that lets AI apps, like Claude Desktop, connect to external tools and data sources. It gives a clear and safe way for AI assistants to work wi
npx mdskills install recursechat/mcp-server-apple-shortcutsRelated
@recursechat? Sign in with GitHub to claim this listing.Clear MCP server enabling macOS Shortcuts automation with good setup instructions
1# Apple Shortcuts MCP Server ๐ค23A Model Context Protocol (MCP) server that lets AI assistants like Claude control Apple Shortcuts automations. This enables AI models to trigger shortcuts and automate tasks on macOS in a safe and controlled way.45<a href="https://www.npmjs.com/package/mcp-server-apple-shortcuts"><img src="https://img.shields.io/npm/v/mcp-server-apple-shortcuts"/></a>67<a href="https://glama.ai/mcp/servers/15z6abk6p2"><img width="380" height="200" src="https://glama.ai/mcp/servers/15z6abk6p2/badge" /></a>89## What is MCP? ๐ค1011The Model Context Protocol (MCP) is a system that lets AI apps, like Claude Desktop, connect to external tools and data sources. It gives a clear and safe way for AI assistants to work with local services and APIs while keeping the user in control.1213## What does this server do? ๐1415The Apple Shortcuts MCP server:16- Enables AI assistants to list available shortcuts17- Allows running shortcuts by name with optional input parameters18- Provides a simple interface for automation control1920## Prerequisites ๐2122Before you begin, ensure you have:2324- [Node.js](https://nodejs.org/) (v18 or higher)25- [Claude Desktop](https://claude.ai/download) installed26- macOS with Shortcuts app configured2728## Configuration to use Apple Shortcuts Server โ๏ธ2930Here's the Claude Desktop configuration to use the Apple Shortcuts server:31```json32{33 "mcpServers": {34 "apple-shortcuts": {35 "command": "npx",36 "args": ["-y", "mcp-server-apple-shortcuts"]37 }38 }39}40```4142## Build Apple Shortcuts Server and run locally ๐ ๏ธ43441. Clone this repository:4546```sh47git clone git@github.com:recursechat/mcp-server-apple-shortcuts.git48```49502. Install dependencies:51```sh52npm install53```54553. Build project56```sh57npm run build58```5960Here's the Claude Desktop configuration to use the Apple Shortcuts server with a local build:61```json62{63 "mcpServers": {64 "apple-shortcuts": {65 "command": "npx",66 "args": ["/path/to/mcp-server-apple-shortcuts/build/index.js"],67 }68 }69}70```7172<!--73```json74{75 "mcpServers": {76 "apple-shortcuts": {77 "command": "npx",78 "args": ["-y", "mcp-server-apple-shortcuts"]79 }80 }81}82```83-->8485## Usage ๐ฏ8687You can ask Claude "list shortcuts" or run a specific shortcut with the shortcut name, for example "get word of the day" or "play a song".8889## License โ๏ธ9091Apache-2.092
Full transparency โ inspect the skill content before installing.