Skip to main content
Glama
shaack

mcps-for-macos

by shaack

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

packages/apple-calendar

Read and create appointments (Calendar.app)

Apple Mail

packages/apple-mail

Search and read mail, save attachments, flag, move, write reply drafts

MoneyMoney

packages/money-money

Export accounts and transactions

Spotlight

packages/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 install

A 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.js

Without --scope user, the registration only applies to the current project. Check and remove:

claude mcp list
claude mcp remove spotlight

Claude 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/spotlight

License

MIT

A
license - permissive license
Not graded
quality - not tested
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

  • A
    license
    Not graded
    quality
    B
    maintenance
    A 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.
    11
    4
    MIT
  • A
    license
    Not graded
    quality
    A
    maintenance
    A 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.
    12
    MIT
  • A
    license
    B
    quality
    B
    maintenance
    An MCP server that gives AI assistants full access to Apple Mail -- read, search, compose, organize, and analyze emails via natural language.
    38
    MIT

View all related MCP servers

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.

View all MCP Connectors

Latest Blog Posts

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