mcps-for-macos
Provides tools for automating Apple Mail via AppleScript, including searching emails, saving attachments, reading text, and flagging messages.
Provides macOS automation tools including system-wide file search via Spotlight (mdfind/mdls), Apple Mail automation, and MoneyMoney account/transaction export.
Click on "Install 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., "@mcps-for-macossearch my mail for invoices from last month"
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.
mcps-for-macos
A collection of MCP servers (Model Context Protocol) for macOS automation. Each server wraps an app or system function via AppleScript or the command line and exposes it as tools that an AI application (Claude Desktop, Claude Code) can call.
Server | Package | Purpose |
Apple Calendar | Read and create appointments (Calendar.app) | |
Apple Mail | Search and read mail, save attachments, flag, move, write reply drafts | |
MoneyMoney | Export accounts and transactions | |
Spotlight | System-wide file search (mdfind/mdls) |
Shared helpers (AppleScript execution including escaping, command execution) live in packages/common and are used by the servers as @mcps/common.
What is an MCP server?
MCP is an open standard through which AI applications (the host) talk to external tools and data. A server provides capabilities (tools) and knows nothing about AI itself. Communication via JSON-RPC 2.0, here via stdio (local process). Registering means: telling the host how to start the server. The host starts it as a subprocess at every session start, queries its tools, and makes them available to the AI.
Related MCP server: macos-mcp-tools
Installation
npm installA single npm install in the root directory is enough for all servers (npm workspaces). No build step: pure ESM JavaScript, Node >= 18.
Registering
Each server is registered individually because each is its own process. Paths must be given as absolute paths; <REPO> stands for the path to this repo.
Claude Code
# global in allen Projekten (empfohlen für Systemwerkzeuge)
claude mcp add apple-calendar --scope user -- node <REPO>/packages/apple-calendar/src/index.js
claude mcp add apple-mail --scope user -- node <REPO>/packages/apple-mail/src/index.js
claude mcp add money-money --scope user -- node <REPO>/packages/money-money/src/index.js
claude mcp add spotlight --scope user -- node <REPO>/packages/spotlight/src/index.jsWithout --scope user, the registration only applies to the current project. Check and remove:
claude mcp list
claude mcp remove spotlightClaude Desktop
In ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"apple-calendar": { "command": "node", "args": ["<REPO>/packages/apple-calendar/src/index.js"] },
"apple-mail": { "command": "node", "args": ["<REPO>/packages/apple-mail/src/index.js"] },
"money-money": { "command": "node", "args": ["<REPO>/packages/money-money/src/index.js"] },
"spotlight": { "command": "node", "args": ["<REPO>/packages/spotlight/src/index.js"] }
}
}macOS permissions
Automation. On first access, macOS asks for automation access to Mail, Calendar, or MoneyMoney. Allow it once.
Full Disk Access. Protected locations (e.g.
~/Library/Mail) only return results with Full Disk Access for the executing process (System Settings → Privacy & Security → Full Disk Access).
Test locally
Click through each server individually with the MCP Inspector:
npm run inspect -w @mcps/spotlightLicense
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceA read-only MCP server that exposes data from native macOS apps (Mail, Notes, Calendar, Reminders, Contacts, Messages, Spotlight) to AI agents over stdio, currently in early development with no domain tools wired yet.114MIT
- AlicenseNot gradedqualityAmaintenanceA collection of MCP servers for Apple macOS apps (Mail, Contacts, Notes, Memory, Messages, Calendar, Reminders) enabling AI assistants to read, search, create, and update data via JXA, SQLite, and EventKit.12MIT
- AlicenseAqualityBmaintenanceA local MCP server that exposes macOS automation actions (AppleScript + CLIs) as tools, enabling MCP clients on your Mac to control apps, system settings, and more.39MIT
- AlicenseBqualityBmaintenanceAn MCP server that gives AI assistants full access to Apple Mail -- read, search, compose, organize, and analyze emails via natural language.38MIT
Related MCP Connectors
Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.
Let ChatGPT, Claude & Cursor use your Mac: email, calendar, iMessage, Teams, files. Local, free.
Search, read, and write your Apple Notes from ChatGPT/Claude via a local Mac agent + MCP relay.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/shaack/mcps-for-macos'
If you have feedback or need assistance with the MCP directory API, please join our Discord server