MCP 苹果提醒事项是一个基于 Model Context Protocol (MCP) 的服务器,它能让你在 macOS 系统上与苹果提醒事项应用进行交互,为你提供便捷的提醒事项管理体验。
将以下内容添加到你的 claude_desktop_config.json
文件中:
{
"mcpServers": {
"apple-reminders": {
"command": "node",
"args": [
"/path/to/mcp-apple-reminders/dist/index.js"
]
}
}
}
{
"mcpServers": {
"apple-reminders": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-apple-reminders"
]
}
}
}
该服务器通过 MCP 提供以下工具以与苹果提醒事项交互:
返回所有提醒事项列表。
从特定列表中获取提醒事项。
listName
(必需):提醒事项列表的名称创建一个新的提醒事项。
listName
(必需):提醒事项列表的名称title
(必需):提醒事项的标题dueDate
(可选):提醒事项的截止日期(ISO 格式:"YYYY-MM-DDTHH:MM:SS.sssZ")notes
(可选):提醒事项的备注将提醒事项标记为已完成。
listName
(必需):提醒事项列表的名称reminderName
(必需):要完成的提醒事项的名称删除一个提醒事项。
listName
(必需):提醒事项列表的名称reminderName
(必需):要删除的提醒事项的名称此 MCP 服务器使用 AppleScript 与 macOS 上的苹果提醒事项应用交互。它为 AI 助手提供了一个标准化接口,以便通过 Model Context Protocol 管理提醒事项。
该项目使用 TypeScript 和 MCP SDK。要扩展功能,请修改 src/index.ts
中的工具以及 src/reminders.ts
中的 AppleScript 函数。
MIT