Apple Reminders MCP

Apple Reminders MCP

Enables model-controlled read/write access to macOS Reminders, including lists, reminders, dates, repeats, early reminders, priority, flags, notes, and URLs.

Category
Visit Server

README

Apple Reminders MCP

A local stdio MCP server that gives a model controlled read/write access to macOS Reminders: lists, reminders, dates, repeats, early reminders, priority, flags, notes, and URLs.

macOS only. Built against macOS 27 with Swift 6.4.

Install

As an extension bundle (recommended)

npm install && npm run package:mcpb

That produces apple-reminders-mcp.mcpb. Open it, or drag it into Claude Desktop's Extensions pane, the same way as apple-calendar-mcp.mcpb and apple-mail-mcp.mcpb.

From source

npm install && npm run build

Then register it with your MCP client:

{
  "mcpServers": {
    "apple-reminders": {
      "command": "node",
      "args": ["/absolute/path/to/apple-reminders-mcp/dist/index.js"]
    }
  }
}

The Swift helper is deliberately not code-signed with its own identity. An ad-hoc identity makes it a separate TCC subject, which breaks EventKit access inheritance (verified: signing makes requestFullAccessToReminders return false). Unsigned, it inherits the MCP client's permissions.

On first use your MCP client will need:

  • Reminders access (System Settings → Privacy & Security → Reminders) — for everything.
  • Automation → Reminders access — only if you use flags.

Tools

Each tool carries a display name in Reminders' own vocabulary, which is what clients show instead of the raw function name.

Shown as Tool What it does
Show Lists list_lists Every list with id, account, color, writability, and which is default
New List create_list New list, optional hex color
Edit List update_list Rename a list and/or change its color
Delete List delete_list Delete a list and every reminder in it — requires confirm: true
Find Reminders list_reminders Filter by list, completion, due window, text; limit with a truncated flag
Open Reminder get_reminder Full detail for one reminder
New Reminder create_reminder Create with any supported field
Edit Reminder update_reminder Patch any field, including checking off via completed
Move to List move_reminder Move a reminder to another list
Delete Reminder delete_reminder Delete one reminder

Also exposed: reminders://lists and reminders://capabilities resources, and a triage_reminders prompt.

Field mapping

How the Reminders app's detail panel maps onto this server:

Reminders app Field Notes
Title title
Notes notes "" clears
URL url "" clears
Date / Time due, allDay YYYY-MM-DD → all-day; ISO datetime → timed; "" clears
Repeat recurrence iCal RRULE without the RRULE: prefix
End Repeat recurrence the RRULE's UNTIL= or COUNT=
Early Reminder earlyReminderMinutes minutes before due; null clears
List list / move_reminder
Flag flagged AppleScript-backed, slow — see below
Priority priority none | low | medium | high
checkbox completed
Tags not supported, see below
Urgent not supported, see below

Every reminder comes back with both due (UTC, or YYYY-MM-DD when all-day) and dueLocal. Use dueLocal when telling a person when something is due.

Checking off a repeating reminder

Checking off a repeating reminder advances it to its next occurrence instead of completing it — the same thing the Reminders app does. The response returns completed: false with a later due date. To end a series, clear recurrence first or delete the reminder.

What is not supported, and why

Two fields in the Reminders UI have no API behind them on macOS 27. This was established by direct testing, not assumption:

Tags. EKReminder and EKCalendarItem expose no tag property (dumped via the Objective-C runtime: class_copyPropertyList returns no tag-shaped member, and respondsToSelector: is false for tags and hashtags). The Reminders AppleScript dictionary has no tags term either — its reminder class exposes only name, id, container, creation/modification date, body, completed, completion date, due date, allday due date, remind me date, priority, and flagged. Writing #tag into a title does not create a tag: a reminder created via EventKit titled zzz mcp probe #zzmcpprobe rendered in Reminders as literal text with no tag attached. Tags live in the Reminders group container, which is TCC-protected and unsafe to write directly (it is a synced CoreData store).

Urgent. The "Urgent" toggle (Mark this reminder as urgent to set an alarm) appears in neither EventKit nor the AppleScript dictionary. Toggling it in the UI produced no property this server can read or write.

If you need either field, it has to be set by hand in the Reminders app.

Flags are slow

flagged is the one field EventKit cannot reach, so it goes through Reminders.app's AppleScript bridge. That bridge is slow and degrades with list size — measured on this machine: ~1s on a small list, ~15s for a global lookup by id, ~30s for a list holding hundreds of reminders.

So flag state is opt-in:

  • Reads omit it unless you pass includeFlagged: true; otherwise flagged comes back null (meaning "not read", not "not flagged").
  • Writes only pay the cost when you actually send flagged.

Raise APPLE_REMINDERS_MCP_TIMEOUT_MS (default 120000) if you have very large lists.

Safety

  • Writes to read-only lists are refused.
  • APPLE_REMINDERS_MCP_ALLOW_LISTS — comma-separated list names or ids. When set, writes are confined to those lists.
  • delete_list requires confirm: true because it destroys every reminder in the list.
  • Destructive tools carry destructiveHint annotations so clients can gate them.

Verifying

npm run verify

That builds, runs the helper's self-tests (RRULE round trip, priority mapping, date components, id bridging, AppleScript escaping, input rejection), then runs an end-to-end smoke test that drives the real MCP server over stdio against throwaway lists and deletes them afterwards.

The smoke test covers all 10 tools in 27 assertions, including a guard that every tool advertises a usable JSON input schema. Set SMOKE_SKIP_FLAGS=1 to skip the slow flag checks.

Layout

helper/EventKitReminders.swift   EventKit + AppleScript, JSON in on stdin, JSON out on stdout
src/helper.ts                    spawns the helper, one process per call
src/index.ts                     MCP tools, zod schemas, model-facing instructions
icon.png                         256x256 bundle icon
scripts/make-icon.swift          redraws icon.png; geometry and colours are
                                 measured from the Reminders app icon, drawn in
                                 CoreGraphics rather than copied as an asset
scripts/build-helper.sh          swiftc build (intentionally unsigned)
scripts/helper-self-test.mjs     pure-logic self-tests, touches no real data
scripts/smoke.mjs                end-to-end test over stdio JSON-RPC
scripts/package.mjs              builds apple-reminders-mcp.mcpb
scripts/package-check.mjs        asserts the bundle has the runtime files, an
                                 executable helper, and no dev artifacts

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured