MCP Hub
Back to servers

Apple Shortcuts MCP Server

A specialized MCP server for programmatically generating, analyzing, and managing Apple Shortcuts. It provides a comprehensive toolset for searching iOS/macOS actions and building valid .shortcut files with control flow logic.

Tools
9
Updated
Jan 16, 2026

Apple Shortcuts MCP Server

MCP server for creating, analyzing, and managing Apple Shortcuts.

Remote (Hosted)

{
  "mcpServers": {
    "apple-shortcuts": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://shortcuts-mcp.kalyp.so/sse", "--transport", "sse-only"]
    }
  }
}

Local

npm install && npm run build
npm start        # stdio
npm run start:http  # http on port 3000
{
  "mcpServers": {
    "apple-shortcuts": {
      "command": "node",
      "args": ["/path/to/dist/index.js"]
    }
  }
}

Docker

docker build -t apple-shortcuts-mcp .
docker run -p 3000:3000 apple-shortcuts-mcp

Tools

ToolDescription
shortcuts_list_categoriesList action categories
shortcuts_search_actionsSearch actions
shortcuts_get_actionGet action details
shortcuts_generateGenerate .shortcut file
shortcuts_analyzeAnalyze shortcut
shortcuts_validateValidate shortcut
shortcuts_create_blockCreate control flow blocks
shortcuts_create_actionCreate common actions
shortcuts_list_iconsList icon options

Example

{
  "name": "Hello",
  "actions": [
    { "identifier": "gettext", "parameters": { "WFTextActionText": "Hello!" } },
    { "identifier": "showresult" }
  ]
}

Reviews

No reviews yet

Sign in to write a review