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
Eine Sammlung kleiner MCP-Server (Model Context Protocol) für die macOS-Automatisierung. Jeder Server kapselt eine App bzw. Systemfunktion per AppleScript oder Kommandozeile und stellt sie als Tools bereit, die eine KI-Anwendung (Claude Desktop, Claude Code) aufrufen kann.
Server | Paket | Zweck |
Apple Mail | Mail suchen, Anhänge speichern, Text lesen, flaggen | |
MoneyMoney | Konten und Umsätze exportieren | |
Spotlight | Systemweite Dateisuche (mdfind/mdls) |
Gemeinsame Helfer (AppleScript-Ausführung samt Escaping, Kommando-Ausführung)
liegen in packages/common und werden von den Servern als
@mcps/common genutzt.
Was ist ein MCP-Server?
MCP ist ein offener Standard, über den KI-Anwendungen (der Host) mit externen Werkzeugen und Daten sprechen. Ein Server stellt Fähigkeiten (Tools) bereit und weiß selbst nichts von KI. Kommunikation über JSON-RPC 2.0, hier per stdio (lokaler Prozess). Registrieren heißt: dem Host hinterlegen, wie der Server zu starten ist. Der Host startet ihn bei jedem Sitzungsstart als Unterprozess, fragt seine Tools ab und stellt sie der KI bereit.
Related MCP server: automator-mcp
Installation
npm installEin npm install im Wurzelverzeichnis genügt für alle Server (npm workspaces).
Kein Build-Schritt: reines ESM-JavaScript, Node >= 18.
Registrieren
Jeder Server wird einzeln registriert, weil jeder ein eigener Prozess ist. Die
Pfade sind absolut anzugeben; <REPO> steht für den Pfad zu diesem Repo.
Claude Code
# global in allen Projekten (empfohlen für Systemwerkzeuge)
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.jsOhne --scope user gilt die Registrierung nur im aktuellen Projekt. Prüfen und
entfernen:
claude mcp list
claude mcp remove spotlightClaude Desktop
In ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"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-Berechtigungen
Automatisierung. Beim ersten Zugriff fragt macOS nach Automatisierungs-Zugriff auf Mail bzw. MoneyMoney. Einmal erlauben.
Full Disk Access. Geschützte Orte (z. B.
~/Library/Mail) liefern nur mit Full Disk Access für den ausführenden Prozess Treffer (Systemeinstellungen → Datenschutz & Sicherheit → Festplattenvollzugriff).
Lokal testen
Jeden Server einzeln mit dem MCP Inspector durchklicken:
npm run inspect -w @mcps/spotlightLizenz
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
- Alicense-qualityCmaintenanceA 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.Last updated133MIT
- AlicenseBqualityDmaintenanceMCP server that enables AI to control macOS through AppleScript, JXA, and Automator workflows for tasks like email, file management, and system automation.Last updated6164MIT
- Alicense-qualityAmaintenanceA 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.Last updated15MIT
- 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.Last updated39MIT
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