Calendar Safe MCP
Provides tools for interacting with Apple Calendar, enabling listing of calendars and events, creating events, and updating events using the EventKit framework.
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., "@Calendar Safe MCPWhat events do I have this week?"
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.
Calendar Safe MCP
An unofficial, local MCP server for Apple Calendar. It uses EventKit, Apple's supported calendar framework, and never reads Calendar databases, account credentials, or the macOS permissions database directly.
Requires macOS 14 Sonoma or later and Python 3.12 or later.
It is macOS-only and provides four tools:
list_calendarslist_eventscreate_eventupdate_event
Install
Install uv, then register the server with your MCP client. For Codex:
codex mcp add calendar -- uvx --from git+https://github.com/jasongibby/calendar-safe-mcp calendar-safe-mcpFor another stdio MCP client, use:
{
"mcpServers": {
"calendar": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/jasongibby/calendar-safe-mcp",
"calendar-safe-mcp"
]
}
}
}Call list_calendars after starting your MCP client. macOS should request
Calendar access for that client. Grant Full Access under System Settings →
Privacy & Security → Calendars.
Related MCP server: Apple Calendar MCP
Safety and privacy
Access uses only Apple's EventKit framework and normal macOS consent flow.
Reads return scheduling fields only unless
include_details=trueis passed.Create and update responses stay compact and never echo notes, URLs, or alarms.
Text queries search titles only unless
search_notes=trueis passed.Date ranges are limited to 366 days and response limits are capped at 1,000.
Recurring updates require an explicit
spanofthisorfuture.Event contents are never logged by the server.
Delete and recurrence-creation tools are intentionally omitted.
Your MCP client and AI provider can see calendar data returned by the server. Review their privacy policies before use. This project is not affiliated with or endorsed by Apple.
See Apple's EventKit documentation.
Development
uv sync
uv run python -m unittest discover -s tests -vTests use mocks and do not access Calendar data.
License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
Connects ChatGPT to your Apple Calendar via a local Mac agent + Vercel relay
Calendar API for AI agents: events, availability, Google/Microsoft setup, scheduling, and iCal.
GDPR-compliant calendar access for AI assistants: read, create, edit, RSVP. Google, MS 365, Apple.
Manage Google, Outlook & Apple calendars and create private sync rules from chat.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceTransforms macOS calendar management into a conversational experience using natural language, allowing users to create, manage, and update calendar events seamlessly through an MCP-compatible client.331MIT
- AlicenseNot gradedqualityDmaintenanceEnables Claude and other MCP clients to directly interact with macOS Calendar.app using AppleScript for local calendar management. Provides tools for listing, searching, creating, updating, and deleting calendar events without cloud APIs or CalDAV setup.10 npm4MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to access and interact with macOS Calendar.app events and reminders, including viewing, searching, and filtering calendar data.2MIT
- AlicenseAqualityDmaintenanceExposes Apple Calendar data through an EventKit helper app. Enables reading, creating, updating, and deleting calendar events on macOS.716 npmMIT