mcp-mac
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
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| discover_appsC | Discover AppleScript capabilities of a macOS application |
| finder_get_selectionB | Get currently selected files/folders in Finder |
| finder_get_current_folderA | Get path of currently viewed folder in frontmost Finder window |
| mail_get_accountsB | Get list of all Mail account names |
| mail_get_inbox_countB | Get unread message count in inbox |
| mail_get_total_inbox_countB | Get total message count in inbox |
| contacts_search_peopleC | Search for people by name in Contacts |
| contacts_get_person_infoC | Get detailed information for a specific person |
| reminders_get_listsB | Get all reminder lists with reminder counts |
| reminders_get_incomplete_remindersC | Get incomplete reminders across all lists |
| notes_get_foldersB | Get all note folders with note counts |
| notes_get_recent_notesC | Get recently modified notes |
| notes_search_notesC | Search notes by title or content |
| notes_create_noteC | Create new note with title and content |
| textedit_get_documentsB | Get list of open TextEdit documents |
| textedit_create_documentC | Create new TextEdit document with optional content |
| calendar_get_calendarsB | Get all calendars with event counts |
| calendar_create_eventC | Create new calendar event |
| calendar_get_today_eventsB | Get today's events across all calendars |
| calendar_get_upcoming_eventsC | Get upcoming events in date range |
| workflow_contact_to_texteditC | Get contact information and create formatted TextEdit document |
| mail_create_messageC | Create new email message with recipients, subject, and body |
| mail_send_messageC | Send the most recently created message |
| reminders_create_reminderC | Create new reminder with title, optional due date and list |
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 24 tools
Every tool has a clearly distinct purpose with no ambiguity, as each is prefixed by its domain (e.g., calendar_, contacts_, finder_) and specifies a unique action (e.g., create_event, get_calendars, get_selection). The domains are well-separated, preventing misselection.
Tool names follow a highly consistent verb_noun pattern with domain prefixes (e.g., calendar_create_event, contacts_search_people). All use snake_case uniformly, and the naming structure is predictable across all 24 tools, making them easily readable and organized.
With 24 tools, the count is slightly high but reasonable for the broad scope of macOS automation covering multiple domains like calendar, contacts, mail, and notes. Each tool earns its place by addressing specific tasks, though it borders on heavy for a single server.
The tool surface provides strong CRUD/lifecycle coverage across domains, with create, get, and search operations for most resources. Minor gaps exist, such as no update/delete for calendar events or notes, but agents can work around these for core workflows.