苹果 MCP 工具是一个专为 MCP 协议 打造的苹果原生工具集合,能帮助用户在苹果设备上实现多样化的自动化操作,提升工作和生活效率。
关于如何设置和演示的分步视频,请参阅:https://x.com/DhravyaShah/status/1892694077679763671
{
"mcpServers": {
"apple-mcp": {
"command": "bunx",
"args": ["--no-cache", "apple-mcp@latest"]
}
}
通过 Smithery 自动安装 Apple MCP for Claude Desktop:
npx -y @smithery/cli@latest install @Dhravya/apple-mcp --client claude
以及用于 cursor:
npx -y @smithery/cli@latest install @Dhravya/apple-mcp --client cursor
如果不想使用 Smithery,可以按照以下步骤手动安装:
git clone https://github.com/Dhravya/apple-mcp.git
cd apple-mcp
npm install
node index.js
消息:
笔记:
联系人:
邮件:
提醒事项:
日历:
网页搜索:
地图:
待办:在 Apple Photos 应用中搜索包含特定文本的提醒事项
待办:在 Apple Photos 应用中搜索位置和照片
安装完成后,您可以通过配置 MCP 代理来使用这些功能。具体步骤如下:
例如,在 Claude 中,您可以这样配置:
{
"providing": {
"apple-mcp": {
"url": "http://localhost:3000"
}
}
}
然后,您就可以在对话中使用以下功能:
/apple/mcp/send-message:发送消息。/apple/mcp/read-message:朗读消息。/apple/mcp/search-notes:搜索笔记。发送一条消息给 John:
/apple/mcp/send-message to=John message="Hello, how are you?"
搜索包含“会议”的笔记:
/apple/mcp/search-notes query="会议"
设置一个提醒事项:
/apple/mcp/create-reminder title="开会" date="2023-10-05 14:00"
希望这些工具能为您的自动化流程增添便利!