这是一个模型上下文协议(MCP)服务器,允许像Claude这样的AI助手控制Apple Shortcuts自动化。这使得AI模型能够在macOS上以安全可控的方式触发快捷方式并自动化任务。
<a href="https://www.npmjs.com/package/mcp-server-apple-shortcuts"><img src="https://img.shields.io/npm/v/mcp-server-apple-shortcuts"/></a>
<a href="https://glama.ai/mcp/servers/15z6abk6p2"><img width="380" height="200" src="https://gips0.baidu.com/it/u=1126650767,2088392648&fm=3081&app=3081&f=PNG?w=760&h=400" /></a>
模型上下文协议(MCP)是一个系统,它让AI应用程序(如Claude Desktop)能够连接到外部工具和数据源。它提供了一种清晰且安全的方法,使AI助手能够与本地服务和API进行交互,同时保持用户对操作的控制。
Apple Shortcuts MCP服务器:
在开始之前,请确保您已具备以下条件:
这是使用Apple Shortcuts服务器的Claude Desktop配置:
{
"mcpServers": {
"apple-shortcuts": {
"command": "npx",
"args": ["-y", "mcp-server-apple-shortcuts"]
}
}
}
git clone git@github.com:recursechat/mcp-server-apple-shortcuts.git
npm install
npm run build
这是使用本地构建的Apple Shortcuts服务器的Claude Desktop配置:
{
"mcpServers": {
"apple-shortcuts": {
"command": "npx",
"args": ["/path/to/mcp-server-apple-shortcuts/build/index.js"],
}
}
}
您可以询问Claude“列出快捷方式”或通过快捷方式名称运行特定快捷方式,例如“获取每日词汇”或“播放一首歌曲”。
Apache-2.0