apple-productivity-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| apple_mail_list_accountsA | Read-only: list local Apple Mail account names, sender addresses, and mailbox names. Use this before other Mail tools when the exact names are unknown. |
| apple_mail_listA | Read-only: list local Apple Mail metadata. Returns message ID, sender, subject, received time, and read/flag status. It does not read message bodies. |
| apple_mail_getA | Read-only: read one local Apple Mail message, including its body. Use apple_mail_list first to obtain the local mail id. |
| apple_mail_sendA | Send an Apple Mail message from the selected local account. This immediately sends email to the specified recipients. |
| apple_mail_update_statusA | Modify a local Apple Mail message read/unread and/or flagged status. |
| apple_mail_moveA | Move a local Apple Mail message to another mailbox in the same account. |
| apple_mail_deleteA | Delete a local Apple Mail message. This is destructive and moves the message according to Mail.app deletion behavior. |
| apple_calendar_list_calendarsA | Read-only: list local Calendar.app calendar names and whether each calendar is writable. Use this before creating or modifying events when the exact calendar name is unknown. |
| apple_calendar_list_eventsA | Read-only: list local Calendar.app events in a time range. |
| apple_calendar_create_eventB | Create a new local Calendar.app event. |
| apple_calendar_update_eventA | Modify an existing local Calendar.app event. Obtain the uid from apple_calendar_list_events. |
| apple_calendar_delete_eventA | Delete an existing local Calendar.app event. This is destructive. |
| apple_reminders_list_listsA | Read-only: list local Apple Reminders list names and IDs. Use this before creating reminders when the exact list name is unknown. |
| apple_reminders_listC | Read-only: list local Apple Reminders. |
| apple_reminders_createC | Create a local Apple Reminder. |
| apple_reminders_updateC | Modify an existing local Apple Reminder. |
| apple_reminders_completeB | Mark an existing local Apple Reminder as completed. |
| apple_reminders_deleteA | Delete an existing local Apple Reminder. This is destructive. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 18 tools
Each tool is prefixed by domain (mail, calendar, reminders) and targets a distinct resource/action. Similar-sounding tools like apple_mail_list and apple_mail_list_accounts are clearly differentiated by descriptions.
All tools follow a consistent `apple_<domain>_<verb>_<noun>` snake_case pattern. Minor exceptions like apple_mail_send and apple_mail_move omit an explicit noun but still fit the overall convention.
18 tools is well-scoped for covering three applications (Mail, Calendar, Reminders) with the common operations for each. Each domain has a sensible number of tools without redundancy.
Mail covers listing, reading, sending, updating status, moving, and deleting. Calendar covers listing, creating, updating, and deleting events. Reminders covers listing, creating, updating, completing, and deleting. The surface is complete for typical productivity workflows.