Install
$ agentstack add mcp-fradser-mcp-server-apple-events ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ● Shell / process execution Used
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Apple Events MCP Server
[](https://x.com/FradSer)
English | [简体中文](README.zh-CN.md)
A Model Context Protocol (MCP) server that provides native integration with Apple Reminders and Calendar on macOS. This server allows you to interact with Apple Reminders and Calendar Events through a standardized interface with comprehensive management capabilities.
> [!NOTE] > Looking ahead: event — a pure Swift CLI for Apple Reminders and Calendar on macOS. > > For scripting, automation, and direct terminal usage, we now recommend the standalone event CLI. It exposes the same EventKit-backed reminder/calendar/list/subtask/tag operations this server uses today, with first-class Markdown and JSON output. Future versions of mcp-server-apple-events are planned to depend on the event CLI in place of the bundled EventKitCLI binary, so both projects can share a single, well-tested Swift implementation.
Features
Core Functionality
- List Management: View all reminders and reminder lists with advanced filtering options
- Reminder Operations: Full CRUD operations (Create, Read, Update, Delete) for reminders across lists
- Rich Content Support: Complete support for titles, notes, due dates, URLs, and completion status
- Native macOS Integration: Direct integration with Apple Reminders using EventKit framework
Enhanced Reminder Features (v1.3.0)
- Priority Support: Set reminder priority (high/medium/low/none) with visual indicators
- Recurring Reminders: Create repeating reminders with flexible recurrence rules (daily, weekly, monthly, yearly)
- Location-Based Triggers: Set geofence reminders that trigger when arriving at or leaving a location
- Tags/Labels: Organize reminders with custom tags for cross-list categorization and filtering
- Subtasks/Checklists: Add checklist items to reminders with progress tracking
Advanced Features
- Smart Organization: Automatic categorization and intelligent filtering by priority, due date, category, or completion status
- Powerful Search: Multi-criteria filtering including completion status, due date ranges, tags, and full-text search
- Batch Operations: Efficient handling of multiple reminders with optimized data access patterns
- Permission Management: Automatic validation and request for required macOS system permissions
- Flexible Date Handling: Support for multiple date formats (YYYY-MM-DD, ISO 8601) with timezone awareness
- Unicode Support: Full international character support with comprehensive input validation
Technical Excellence
- Clean Architecture: 4-layer architecture following Clean Architecture principles with dependency injection
- Type Safety: Complete TypeScript coverage with Zod schema validation for runtime type checking
- High Performance: Swift-compiled binaries for performance-critical Apple Reminders operations
- Robust Error Handling: Consistent error responses with detailed diagnostic information
- Repository Pattern: Data access abstraction with standardized CRUD operations
- Functional Programming: Pure functions with immutable data structures where appropriate
Prerequisites
- Node.js 20 or later
- macOS (required for Apple Reminders integration)
- Xcode Command Line Tools (required for compiling Swift code)
- pnpm (recommended for package management)
macOS Permission Requirements (Sonoma 14+ / Sequoia 15)
Apple now separates Reminders and Calendar permissions into write-only and full-access scopes. The Swift bridge declares the following privacy keys so Claude can both read and write data when you approve access:
NSRemindersUsageDescriptionNSRemindersFullAccessUsageDescriptionNSRemindersWriteOnlyAccessUsageDescriptionNSCalendarsUsageDescriptionNSCalendarsFullAccessUsageDescriptionNSCalendarsWriteOnlyAccessUsageDescription
When the CLI detects a notDetermined authorization status it calls requestFullAccessToReminders / requestFullAccessToEvents, which in turn triggers macOS to show the correct prompt. If the OS ever loses track of permissions, rerun ./check-permissions.sh to re-open the dialogs.
If a Claude tool call still encounters a permission failure, see Desktop MCP clients below for the responsible-process attribution problem and the recommended workarounds.
Troubleshooting Calendar Read Errors
If you see Failed to read calendar events, verify Calendar is set to Full Calendar Access:
- Open
System Settings > Privacy & Security > Calendars - Find the app that launches this MCP server (for example Terminal or Claude Desktop)
- Change access to Full Calendar Access
You can also re-run ./check-permissions.sh (it now validates both Reminders and Calendars access).
Desktop MCP clients (Claude Desktop, Codex Desktop, …)
macOS attributes Reminders and Calendar access to the responsible process — the desktop app that launched the MCP server, not the EventKitCLI subprocess. For the EventKit prompt to appear, the responsible app's bundle must ship the NSRemindersUsageDescription / NSCalendarsUsageDescription keys (and on Sonoma+ the matching write-only or full-access variants). If those keys are missing, TCC refuses the request before EventKit is even reached, and the Swift CLI returns:
Reminder permission denied. Unknown error
— even though running the same binary from Terminal works. See issue #93 for the full TCC log; Codex Desktop today ships only NSAppleEventsUsageDescription, which is why it hits this wall.
This is a macOS-level constraint that an MCP server alone cannot resolve — the desktop client itself needs to declare those usage strings in its Info.plist. The workarounds below are about making the server usable while you wait for the upstream fix:
Reliable workaround — run the server from a terminal-based MCP client. Codex CLI, Claude Code, and similar terminal-launched clients inherit Terminal's (or iTerm2's) own kTCCServiceReminders / kTCCServiceCalendar grant, so EventKit calls succeed without changes to this server:
# from inside Terminal / iTerm2, where the responsible app holds the EventKit grants
codex
# or
claude
Partial workaround — AppleScript routing (only if the desktop app already declares NSAppleEventsUsageDescription). Running:
osascript -e 'tell application "Reminders" to get name of lists'
osascript -e 'tell application "Calendar" to get name of calendars'
triggers an Automation prompt (kTCCServiceAppleEvents) so the responsible app can control com.apple.reminders and com.apple.iCal. This does not create a kTCCServiceReminders / kTCCServiceCalendar grant on its own, so a Swift CLI that calls EventKit directly will still be refused if the host bundle is missing the usage strings. It only helps if your client can fall back to AppleScript end-to-end (this server does not today).
Verification command
pnpm test -- src/swift/Info.plist.test.ts
The test suite ensures all required usage-description strings are present before shipping the binary.
Troubleshooting could not build module 'Foundation' on macOS 26 (Tahoe)
If pnpm build fails with could not build module 'Foundation' (or SDK is not supported by the compiler), your Swift toolchain is older than the macOS 26 SDK requires. The macOS 26+ SDK ships a Foundation.swiftinterface that needs Swift 6.3 or newer; the Command Line Tools that shipped with the first macOS 26 point releases include Swift 6.2.x, which cannot parse it. See issue #85.
pnpm build:swift now detects this mismatch and prints the same remediation, but if you hit it manually:
- Install Xcode 26.x from the App Store (ships Swift 6.3+), or
- Update Command Line Tools to a version that ships Swift 6.3+:
``bash softwareupdate --list sudo softwareupdate -i "Command Line Tools for Xcode-" ``
- If both are installed, point
xcode-selectat the full Xcode:
``bash sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer ``
Verify with:
xcrun swiftc --version # should report Apple Swift version 6.3 or newer
xcrun --show-sdk-version # should match your macOS major version
Quick Start
You can run the server directly using npx:
npx mcp-server-apple-events
Configuration
Configure Cursor
- Open Cursor
- Open Cursor settings
- Click on "MCP" in the sidebar
- Click "Add new global MCP server"
- Configure the server with the following settings:
``json { "mcpServers": { "apple-reminders": { "command": "npx", "args": ["-y", "mcp-server-apple-events"] } } } ``
Configure ChatWise
- Open ChatWise
- Go to Settings
- Navigate to the Tools section
- Click the "+" button
- Configure the tool with the following settings:
- Type:
stdio - ID:
apple-reminders - Command:
mcp-server-apple-events - Args: (leave empty)
Configure Claude Desktop
You need to configure Claude Desktop to recognize the Apple Events MCP server. There are two ways to access the configuration:
Option 1: Through Claude Desktop UI
- Open Claude Desktop app
- Enable Developer Mode from the top-left menu bar
- Open Settings and navigate to the Developer Option
- Click the Edit Config button to open
claude_desktop_config.json
Option 2: Direct File Access
For macOS:
code ~/Library/Application\ Support/Claude/claude_desktop_config.json
For Windows:
code %APPDATA%\Claude\claude_desktop_config.json
2. Add Server Configuration
Add the following configuration to your claude_desktop_config.json:
Option A: Using npx (recommended)
{
"mcpServers": {
"apple-reminders": {
"command": "npx",
"args": ["-y", "mcp-server-apple-events"]
}
}
}
Option B: Using local build
If you have built the project locally, use node with the path to dist/index.js:
{
"mcpServers": {
"apple-reminders": {
"command": "node",
"args": ["/absolute/path/to/mcp-server-apple-events/dist/index.js"]
}
}
}
For more information on connecting local MCP servers, see the official MCP documentation.
3. Restart Claude Desktop
For the changes to take effect:
- Completely quit Claude Desktop (not just close the window)
- Start Claude Desktop again
- Look for the tool icon to verify the Apple Events server is connected
Usage Examples
Once configured, you can ask Claude to interact with your Apple Reminders. Here are some example prompts:
Creating Reminders
Create a reminder to "Buy groceries" for tomorrow at 5 PM.
Add a reminder to "Call mom" with a note "Ask about weekend plans".
Create a reminder in my "Work" list to "Submit report" due next Friday.
Create a reminder with URL "Check this website: https://google.com".
Creating Reminders with Priority
Create a high priority reminder to "Finish quarterly report" due Friday.
Add an urgent high-priority reminder to "Call client back" for today.
Create a medium priority reminder to "Review documents".
Creating Recurring Reminders
Create a daily reminder to "Take medication" at 9 AM.
Add a weekly reminder every Monday to "Team standup meeting".
Create a monthly reminder on the 1st to "Pay rent".
Set up a yearly reminder on March 15 to "File taxes".
Creating Location-Based Reminders
Remind me to "Buy milk" when I arrive at the grocery store.
Create a reminder to "Check mailbox" when I get home.
Add a reminder to "Submit timesheet" when I leave the office.
Creating Reminders with Tags
Create a reminder "Review PR" with tags work and urgent.
Add a reminder "Buy birthday gift" tagged personal and shopping.
Create a reminder with tags: project-alpha, backend, review.
Creating Reminders with Subtasks
Create a reminder "Grocery shopping" with subtasks: milk, eggs, bread, butter.
Add a reminder "Pack for trip" with checklist items: passport, charger, clothes, toiletries.
Create "Sprint planning" with subtasks: review backlog, estimate stories, assign tasks.
Managing Subtasks
Show subtasks for my "Grocery shopping" reminder.
Mark the "milk" subtask as complete.
Add a new subtask "cheese" to my grocery list reminder.
Reorder the subtasks in my packing list.
Filtering Reminders
Show me all high priority reminders.
Show reminders tagged with "work".
Show recurring reminders only.
Find location-based reminders.
Show reminders with incomplete subtasks.
Update Reminders
Update the reminder "Buy groceries" with a new title "Buy organic groceries".
Update "Call mom" reminder to be due today at 6 PM.
Update the reminder "Submit report" and mark it as completed.
Change the notes on "Buy groceries" to "Don't forget milk and eggs".
Set priority to high on my "Finish report" reminder.
Add the tag "urgent" to my "Review PR" reminder.
Managing Reminders
Show me all my reminders.
List all reminders in my "Shopping" list.
Show my completed reminders.
Working with Lists
Show all my reminder lists.
Show reminders from my "Work" list.
The server will:
- Process your natural language requests
- Interact with Apple's native Reminders app
- Return formatted results to Claude
- Maintain native integration with macOS
Structured Prompt Library
The server ships with a consolidated prompt registry exposed via the MCP ListPrompts and GetPrompt endpoints. Each template shares a mission, context inputs, numbered process, constraints, output format, and quality bar so downstream assistants receive predictable scaffolding instead of brittle free-form examples.
- daily-task-organizer — optional
today_focus(what you most want to accomplish today) input produces a same-day execution blueprint that keeps priority work balanced with recovery time. Supports intelligent task clustering, focus block scheduling, automatic reminder list organization, and auto-creates calendar time blocks when many due-today reminders need fixed slots. Quick Win clusters become 15-minute "Focus Sprint — [Outcome]" holds that finish at each reminder's due timestamp, while Standard tasks map to 30-, 45-, or 60-minute events anchored to the same due-time window. - smart-reminder-creator — optional
task_idea(a short description of what you want to do) generates an optimally scheduled reminder structure. - reminder-review-assistant — optional
review_focus(e.g., overdue or a list name) to audit and optimize existing reminders. - weekly-planning-workflow — optional
user_ideas(your thoughts and ideas for what you want to accomplish this week) guides a Monday-through-Sunday reset with time blocks tied to existing lists.
Design constraints and validation
- Prompts are intentionally constrained to native Apple Reminders capabilities (no third-party automations) and ask for missing context before committing to irreversible actions.
- Shared formatting keeps outputs renderable as Markdown sections or tables without extra parsing glue in client applications.
- Run
pnpm test -- src/server/prompts.test.tsto assert metadata, schema compatibility, and narrative assembly each time you amend prompt copy.
Available MCP Tools
This server now exposes service-scoped MCP tools that mirror Apple Reminders and Calendar domains. Use the identifier that matches the resource you want to manipulate:
Reminder Tasks Tool
Tool Name: reminders_tasks
Manages individ
…
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: FradSer
- Source: FradSer/mcp-server-apple-events
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.