Local Apple Calendar, Notes, and Contacts tools for Claude Code, Codex, and other AI assistants on macOS.
Cider lets an AI assistant use the Apple apps already on your Mac.
It connects Claude Code, Codex, or another MCP client to:
- Apple Calendar
- Apple Notes
- Apple Contacts
- a
doctorcheck that tells you whether the setup is healthy
You install it once, register one MCP server, approve the normal macOS privacy prompts, and then your assistant can help with calendar events, notes, and contacts from your local machine.
MCP is the tool/plugin connection used by assistants like Claude Code and Codex. In practice, Cider is the bridge between your assistant and your Apple apps.
Calendar:
- list your calendars
- search events by date range
- create events
- update events
- delete events
- use event IDs so common titles like "Lunch" or "Call" do not hit the wrong event
Notes:
- list folders and notes
- read and search notes
- create, append, move, update, and delete notes
Contacts:
- list and search contacts
- read contact details
- create, update, and delete contacts
Diagnostics:
- run
doctorto confirm Bun, AppleScript, the Calendar helper, Calendar access, Notes access, and Contacts access are working.
git clone https://github.com/proxynico/cider.git
cd cider
bun install
bun run build:swiftbun run build:swift creates the small signed Cider Calendar Helper app that macOS uses for Calendar permission.
claude mcp add --scope user cider -- bun run /path/to/cider/src/index.ts
claude mcp get ciderExample for this local checkout:
claude mcp add --scope user cider -- bun run /Users/nicolasmontero/Developer/tools/cider/src/index.tsRestart Claude Code after registering or updating Cider.
codex mcp add cider -- bun run /path/to/cider/src/index.ts
codex mcp listExample for this local checkout:
codex mcp add cider -- bun run /Users/nicolasmontero/Developer/tools/cider/src/index.tsRestart Codex after registering or updating Cider.
macOS controls access to Calendar, Notes, and Contacts. Cider cannot bypass those prompts, and that is a good thing.
After registration, ask your assistant to run:
doctor
Then try a harmless Calendar read:
calendar_list_calendars
If macOS asks for Calendar access, approve it.
If no prompt appears, open:
System Settings > Privacy & Security > Calendars
Make sure CiderCalendarHelper is enabled with Full Access.
For Notes and Contacts, use:
System Settings > Privacy & Security > Automation
Allow your MCP client or terminal app to control Notes and Contacts if macOS asks.
From your assistant, run:
doctor
A healthy setup looks like this:
OK bun
OK osascript
OK Notes automation
OK Contacts automation
OK calendar helper
calendar authorization: authorized
OK calendar permission: granted
Then try:
calendar_list_calendars
notes_list_folders
contacts_list
If those work, Cider is ready.
Calendar search returns an eventId. Use that eventId when updating or deleting events.
That is safer than updating by title alone, because many calendars have repeated titles like "Meeting", "Lunch", or "Call".
Example flow:
- Search for events in a date range.
- Pick the right event from the results.
- Use its
eventIdto update or delete it.
Mutating Calendar, Notes, and Contacts tools also support dryRun: true where available, so your assistant can preview the action before changing anything.
Use ISO-style dates:
2026-05-12
2026-05-12T10:30:00
2026-05-12T10:30:00Z
2026-05-12T10:30:00+02:00
Date-only values mean local midnight on your Mac.
Run doctor first. It is the fastest way to see what is broken.
If Calendar says notDetermined or denied:
- run
calendar_list_calendars - approve the prompt if it appears
- check that CiderCalendarHelper is enabled in Calendar privacy settings
- restart the MCP client after changing permissions
If Notes or Contacts fail:
- check Automation permissions for the app running Cider
- restart the MCP client after changing permissions
If tools disappeared or still use old behavior:
- quit old Claude/Codex sessions
- start a fresh session so the MCP server reloads the latest code
Useful commands:
bun install
bun run build:swift
bun run test
bun run src/index.tsBefore shipping changes, run:
bun run build:swift
bun run test
git diff --checkFor a full live smoke test, also verify:
doctorcalendar_list_calendars- a temporary Calendar create/update/delete
- temporary Notes and Contacts create/read/delete if those surfaces changed
Cider is one local MCP server. The TypeScript server exposes the tools. Calendar uses a small signed helper app because macOS grants Calendar permission to apps, not anonymous background scripts. Notes and Contacts use Apple automation.
No cloud account, API key, or external database is required. Access stays on your Mac and is controlled by macOS privacy settings.
MIT