Apple Shortcuts

v1.0.0โ€ขDeveloper Toolsโ€ขstable

๐Ÿ“‡ ๐Ÿ  ๐ŸŽ - An MCP Server Integration with Apple Shortcuts

apple-shortcuts-servermcpai-integration
Share:
328
Stars
0
Downloads
0
Weekly
0/5

What is Apple Shortcuts?

Apple Shortcuts is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to ๐Ÿ“‡ ๐Ÿ  ๐ŸŽ - an mcp server integration with apple shortcuts

๐Ÿ“‡ ๐Ÿ  ๐ŸŽ - An MCP Server Integration with Apple Shortcuts

This server falls under the Developer Tools category on MCPgee, the world's largest MCP server directory with 33,000+ servers.

Features

  • ๐Ÿ“‡ ๐Ÿ  ๐ŸŽ - An MCP Server Integration with Apple Shortcuts

Use Cases

Integrate Apple Shortcuts with MCP for home automation.
Execute shortcuts from AI agents on macOS and iOS devices.
recursechat

Maintainer

LicenseApache 2.0
Languagejavascript
Versionv1.0.0
UpdatedMay 22, 2026
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

Manual Installation

npx apple-shortcuts-server

Configuration

Configuration Details

Config File

claude_desktop_config.json

Performance

Response Metrics

Response Time< 200ms
ThroughputMedium

Resource Usage

Memory UsageLow
CPU UsageLow

How to Set Up and Use Apple Shortcuts

The Apple Shortcuts MCP Server integrates macOS and iOS Shortcuts with any MCP-compatible AI assistant, allowing Claude and other clients to list available shortcuts on the system, run them by name, and pass optional input parameters โ€” all through natural language. This means you can ask Claude to 'play a song', 'get the word of the day', or trigger any custom automation you have built in the Shortcuts app, turning AI conversations into a control layer for macOS home automation, productivity scripts, and device integrations. It is particularly valuable for users who have invested heavily in Shortcuts workflows and want to invoke them hands-free through an AI interface.

Prerequisites

  • macOS with the Shortcuts app installed and at least one shortcut configured
  • Node.js v18 or higher
  • Claude Desktop or another MCP-compatible client
  • npm for installing dependencies (if building from source)
1

Add the server to Claude Desktop using npx

The easiest way is to reference the npm package directly in your MCP client configuration. No manual clone or build is needed.

{
  "mcpServers": {
    "apple-shortcuts": {
      "command": "npx",
      "args": ["-y", "mcp-server-apple-shortcuts"]
    }
  }
}
2

Alternative: clone and build locally

For development or customisation, clone the repository, install dependencies, and build the TypeScript source into the build directory.

git clone https://github.com/recursechat/mcp-server-apple-shortcuts.git
cd mcp-server-apple-shortcuts
npm install
npm run build
3

Configure Claude Desktop to use the local build

If you built from source, point the MCP client config at the compiled index.js file using its absolute path.

{
  "mcpServers": {
    "apple-shortcuts": {
      "command": "node",
      "args": ["/path/to/mcp-server-apple-shortcuts/build/index.js"]
    }
  }
}
4

Restart Claude Desktop

Quit and reopen Claude Desktop. The apple-shortcuts server should appear in the MCP panel. The server exposes two tools: list_shortcuts (no parameters) and run_shortcut (name and optional input).

5

Test by listing your shortcuts

Ask Claude to list your shortcuts to verify the Shortcuts app integration is working. This calls the list_shortcuts tool and returns the names of all shortcuts available on the system.

Apple Shortcuts Examples

Client configuration

Claude Desktop configuration using npx to run the Apple Shortcuts MCP server without a local install.

{
  "mcpServers": {
    "apple-shortcuts": {
      "command": "npx",
      "args": ["-y", "mcp-server-apple-shortcuts"]
    }
  }
}

Prompts to try

Example prompts that use the list_shortcuts and run_shortcut tools.

- "List all my available Apple Shortcuts."
- "Run my 'Morning Briefing' shortcut."
- "Get the word of the day using my Shortcuts."
- "Play a random song using my Apple Shortcuts music automation."
- "Run my 'Send Daily Summary' shortcut with today's date as input."

Troubleshooting Apple Shortcuts

run_shortcut returns 'Shortcut not found'

Use list_shortcuts first to get the exact name of the shortcut. Names are case-sensitive and must match exactly as they appear in the Shortcuts app. Shortcuts inside folders may need to be referenced by their bare name.

The Shortcuts app asks for permission dialogs that block execution

Run the shortcut manually once through the Shortcuts app to grant any required permissions (location, contacts, calendar, etc.) before invoking it via the MCP server. Shortcuts requiring user interaction may not run headlessly.

Server fails to start with 'npx: command not found'

Ensure Node.js v18+ is installed. Install it from https://nodejs.org or via Homebrew: brew install node. After installation, npx will be available automatically.

Frequently Asked Questions about Apple Shortcuts

What is Apple Shortcuts?

Apple Shortcuts is a Model Context Protocol (MCP) server that ๐Ÿ“‡ ๐Ÿ  ๐ŸŽ - an mcp server integration with apple shortcuts It connects AI assistants to external tools and data sources through a standardized interface.

How do I install Apple Shortcuts?

Follow the installation instructions on the Apple Shortcuts GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.

Which AI clients work with Apple Shortcuts?

Apple Shortcuts works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.

Is Apple Shortcuts free to use?

Yes, Apple Shortcuts is open source and available under the Apache 2.0 license. You can use it freely in both personal and commercial projects.

Browse More Developer Tools MCP Servers

Explore all developer tools servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.

Quick Config Preview

{ "mcpServers": { "apple-shortcuts-server": { "command": "npx", "args": ["-y", "apple-shortcuts-server"] } } }

Add this to your claude_desktop_config.json or .cursor/mcp.json

Read the full setup guide โ†’

Ready to use Apple Shortcuts?

Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.

33,000+ ServersFree & Open SourceStep-by-Step Guides