MCP server for Apple Reminders
MCP server for Apple Reminders. That is what the apple reminders mcp mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.
A Model Context Protocol (MCP) server for interacting with Apple Reminders on macOS.
The server publishes 5 tools. What each one is for:
getLists — The getLists tool exposed by this servergetReminders — Returns reminders from a specific list. - Parameters: - listName (required): The name of the reminder listcreateReminder — Creates a new reminder. - Parameters: - listName (required): The name of the reminder list - title (required): The title of the reminder - dueDatecompleteReminder — Marks a reminder as completed. - Parameters: - listName (required): The name of the reminder list - reminderName (required): The name of the reminderdeleteReminder — Deletes a reminder. - Parameters: - listName (required): The name of the reminder list - reminderName (required): The name of the reminder to deleteSetup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.
Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Apple Reminders MCP's toolset — getLists, getReminders, createReminder and 2 more — is a fair guide to whether it matches your workflow. It is maintained by shadowfax92; worth a glance at recent repository activity before you build anything load-bearing on it.
SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.
| Tool | What it does |
|---|---|
| getLists | The getLists tool exposed by this server. |
| getReminders | Returns reminders from a specific list. - Parameters: - listName (required): The name of the reminder list |
| createReminder | Creates a new reminder. - Parameters: - listName (required): The name of the reminder list - title (required): The title of the reminder - dueDate (optional): The due date for the reminder (ISO format: "YYYY-MM-DDTHH:MM: |
| completeReminder | Marks a reminder as completed. - Parameters: - listName (required): The name of the reminder list - reminderName (required): The name of the reminder to complete |
| deleteReminder | Deletes a reminder. - Parameters: - listName (required): The name of the reminder list - reminderName (required): The name of the reminder to delete |
{
"mcpServers": {
"apple-reminders": {
"command": "node",
"args": [
"/path/to/mcp-apple-reminders/dist/index.js"
]
}
}
}Configuration as documented by the project. Restart the client after saving.
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
GitHub's official server — repos, issues, pull requests, Actions and code security, straight from your assistant.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Local repository surgery — status, diffs, commits, branches and history for any repo on disk.
Timezone sanity for AI — current time anywhere and correct conversions, without the model doing date math.