A Model Context Protocol (MCP) server that integrates with Apple Reminders enabling comprehensive task management and reminders. Built entirely in Swift using EventKit for native, fast, and reliable access to Apple Reminders.
{
"mcpServers": {
"apple-events-mcp": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server that integrates with Apple Reminders enabling comprehensive task management and reminders. Built entirely in Swift using EventKit for native, fast, and reliable access to Apple Reminders.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 16 days ago. 6 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
Official Notion MCP Server
Give AI agents access to your Obsidian vault via local files or Self-hosted LiveSync.
🗂️🤖 Airtable Model Context Protocol Server, for allowing AI systems to interact with your Airtable bases
MCP Security Weekly
Get CVE alerts and security updates for Apple Events Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server that integrates Apple Reminders and Apple Calendar with Claude, enabling task management and calendar scheduling directly through conversations.
Built entirely in Swift using EventKit for native, fast, and reliable access.
Reminders / Task Management:
list_today_reminders (due today + overdue)Calendar Events:
list_today_eventslist_eventsTransport:
swift build -c release
.build/release/apple-events-mcpFor local use with Claude Desktop. No configuration file needed.
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"apple-events": {
"command": "/absolute/path/to/apple-events-mcp/.build/release/apple-events-mcp"
}
}
}
For remote access from Claude Web, Claude iOS, or other MCP clients.
config.json in the working directory:{
"port": 3030,
"apiKey": "your-secret-api-key"
}
Generate a secure API key:
openssl rand -hex 32
.build/release/apple-events-mcp --http
POST http://localhost:3030/{apiKey}/mcp
GET http://localhost:3030/health
Important: Use HTTPS in production (e.g., behind a reverse proxy) since the API key is in the URL path.
The first time you run this, macOS will prompt you to grant access to both Reminders and Calendar. Click "Allow" for each.
MIT