Apple Shortcut Maker MCP
Enables AI assistants to create, duplicate, list, and run Apple Shortcuts using Cherri code via the Model Context Protocol.
README
Apple Shortcut Maker MCP
Create Apple Shortcut with AI using MCP (Model Context Protocol).
Description
An MCP server that allows AI assistants (like Claude, Cursor, etc.) to create, duplicate, list, and run Apple Shortcuts directly from code. Uses the Cherri programming language for creating shortcuts programmatically.
Features
- Create Shortcut - Create new Apple Shortcuts using Cherri code
- Duplicate Shortcut - Duplicate existing shortcuts with a new name
- List Shortcuts - List all available shortcuts on your Mac
- Run Shortcut - Run any shortcut with optional input
Requirements
- macOS Monterey or later
- Python 3.10+
- Cherri compiler installed
Installation
1. Install Cherri
brew tap electrikmilk/cherri
brew install electrikmilk/cherri/cherri
Verify Cherri is installed:
cherri --version
2. Install this MCP server
# Clone the repository
git clone https://github.com/suisei110/apple-shortcut-maker-mcp.git
cd apple-shortcut-maker-mcp
# Install as package (recommended for direct CLI usage)
uv pip install -e . --system
Or install dependencies only:
uv sync
3. Configure MCP Client
Claude Desktop
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"Apple Shortcut Maker": {
"command": "apple-shortcut-mcp",
"enabled": true
}
}
}
Or using uv (alternative):
{
"mcpServers": {
"apple-shortcut-maker": {
"command": "uv",
"args": [
"--directory",
"/PATH/TO/apple-shortcut-maker-mcp",
"run",
"apple-shortcut-mcp"
]
}
}
}
VS Code (Cursor)
Add to your MCP settings:
{
"mcpServers": {
"Apple Shortcut Maker": {
"command": "apple-shortcut-mcp",
"enabled": true
}
}
}
Usage
Available Tools
Once configured, you can use these tools in your AI assistant:
1. create_shortcut
Create a new Apple Shortcut from Cherri code.
Parameters:
code(string, required): Cherri code for the shortcutname(string, required): Name for the shortcut
Example:
Create a shortcut named "Hello World" that shows an alert with "Hello, World!"
2. duplicate_shortcut
Duplicate an existing shortcut with a new name.
Parameters:
source_name(string, required): Name of the shortcut to duplicatenew_name(string, required): Name for the new shortcut
3. list_shortcuts
List all available shortcuts on your Mac.
Parameters:
folder(string, optional): Filter by folder name
4. run_shortcut
Run an existing shortcut.
Parameters:
name(string, required): Name of the shortcut to runinput(string, optional): Input to pass to the shortcut
Cherri Code Examples
Simple Alert
#define name "Hello World"
#define color blue
#define glyph star
alert("Hello, World!", "Greeting")
With Variables
#define name "Calculate"
@number1 = askNumber("Enter first number")
@number2 = askNumber("Enter second number")
@result = calculate(@number1 + @number2)
showResult("Result: {@result}")
Menu
#define name "Main Menu"
menu "Choose an option:" {
item "Option 1":
alert("You chose 1")
item "Option 2":
alert("You chose 2")
item "Option 3":
alert("You chose 3")
}
Troubleshooting
Cherri not found
Make sure Cherri is installed and in your PATH:
which cherri
If not found, reinstall:
brew reinstall electrikmilk/cherri/cherri
Shortcuts permission denied
Make sure Shortcuts has permission to run. Go to: System Settings > Privacy & Security > Automation
Package not found
Ensure you're using the correct Python path. The server requires Python 3.10+.
License
MIT License - see LICENSE for details.
Author
Acknowledgments
Quick Test
After installation, you can test the MCP server directly:
cd apple-shortcut-maker-mcp
uv run apple-shortcut-mcp
You should see the server start without errors. Then configure your MCP client to use it.
Tools Available
Once configured, these tools will be available in your AI assistant:
| Tool | Description |
|---|---|
create_shortcut |
Create new Apple Shortcuts from Cherri code |
duplicate_shortcut |
Duplicate existing shortcuts |
list_shortcuts |
List all available shortcuts |
run_shortcut |
Run existing shortcuts |
Example Usage
Create a Shortcut
Create a shortcut named "Hello World" with code:
#define name "Hello World"
#define color blue
alert("Hello, World!", "Greeting")
List Shortcuts
List all shortcuts on my Mac
Run Shortcut
Run the shortcut named "My Daily Routine"
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。