reminders-mcp
Provides tools to manage Apple Reminders lists and reminders, including creating, completing, deleting, and listing reminders, synced via iCloud.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@reminders-mcplist reminders from Work list"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
reminders-mcp
MCP plugin exposing Apple Reminders to a Claude Code agent. Pure tool-based plugin (no channel events) — the agent calls these tools when it needs to view or modify reminders.
Used today by Mira on Luna for tracking Arshad's personal/work reminders that auto-sync to his iPhone via iCloud.
Tools
list_lists()— return all Reminders lists on the system (e.g.,Luna,Work,Home).list_reminders(list, include_completed?)— show reminders in a list (incomplete by default).create_reminder(list, title, notes?, due_date?, priority?)— add a reminder.complete_reminder(list, title)— mark a reminder done by list + title.delete_reminder(list, title)— remove a reminder by list + title.
The plugin wraps macOS Reminders via AppleScript / osascript. Tools that mutate require the macOS Automation permission to be granted to the terminal running Claude Code.
Related MCP server: reminders-mcp
Requirements
macOS (Reminders.app + AppleScript)
iCloud signed in on the host (so reminders sync to Arshad's iPhone)
Bun runtime
Full Disk Access and Automation permissions for the terminal running Claude Code
Setup
bun installClaude Code .mcp.json
{
"mcpServers": {
"reminders": {
"type": "stdio",
"command": "/Users/claudewala/.bun/bin/bun",
"args": ["/Users/claudewala/luna-plugins/reminders-mcp/server.ts"],
"alwaysLoad": true
}
}
}No env vars needed — the plugin discovers Reminders lists at runtime.
Scope notes
Luna-only by design — iCloud Reminders is a macOS-native feature. Linux hosts (titan, ariel, dione, janus) can't access it.
Currently wired for Mira only. Other luna agents could use it if their workflow needs reminder management, but it's not in their default tool surface.
The iCloud-Reminders ↔ iPhone sync is one-way visibility — reminders created here show up on Arshad's iPhone within seconds, and vice versa.
This server cannot be deployed
Maintenance
Related MCP Connectors
MCP connector for Apple Reminders — search, create, complete, and edit via your own Mac.
Search, read, and write your Apple Notes from ChatGPT/Claude via a local Mac agent + MCP relay.
Manage Superlist tasks and lists in plain language from any MCP-compatible AI agent.
MCP connector that lets ChatGPT list, search, and run your Apple Shortcuts via a local Mac agent
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables fuzzy search, creation, and management of Apple Reminders via CLI or MCP tools.6 npmMIT
- AlicenseAqualityDmaintenanceAn MCP server for managing Apple Reminders via remindctl on macOS, integrating with Claude Desktop and CoWork.107 npm3MIT
- AlicenseAqualityDmaintenanceEnables Claude to read and manage macOS Reminders (create, list, update, complete, delete reminders) via AppleScript, running entirely locally.6MIT
- AlicenseAqualityFmaintenanceEnables Claude to manage Apple Reminders on macOS, including creating, reading, updating, deleting, and searching reminders across multiple lists with due dates, priorities, and notes.689 npm29MIT