这是一个使用Model Context Protocol (MCP)协议的服务器,它将Apple Reminders与Claude Desktop集成在一起,通过与Claude的对话实现全面的任务管理和提醒功能。
该服务器完全使用Swift编写,并利用EventKit实现对Apple Reminders的原生、快速且可靠的访问。
Apple Reminders是一个功能齐全的任务管理系统,而不仅仅是一个简单的提醒工具。此MCP服务器解锁了Apple Reminders的全部功能,包括:
list_today_reminders查看今天或逾期的任务swift build -c release
.build/release/apple-reminders-mcp将此服务器添加到您的Claude Desktop配置文件~/Library/Application Support/Claude/claude_desktop_config.json中:
{
"mcpServers": {
"apple-reminders": {
"command": "/absolute/path/to/apple-reminders-mcp/.build/release/apple-reminders-mcp"
}
}
}
首次运行时,macOS会提示您授予Reminders访问权限。请点击“允许”。
MIT