mcps-for-macos
mcps-for-macos
macOS自動化のためのMCPサーバー(Model Context Protocol)コレクション。 各サーバーは、AppleScriptまたはコマンドラインを介してアプリまたはシステム機能をカプセル化し、AIアプリケーション(Claude Desktop、Claude Code)が呼び出せるツールとして提供します。
サーバー | パッケージ | 目的 |
Appleカレンダー | 予定の読み取りと作成(Calendar.app) | |
Apple Mail | メールの検索と読み取り、添付ファイルの保存、フラグ付け、移動、返信下書きの作成 | |
MoneyMoney | 口座と取引のエクスポート | |
Spotlight | システム全体のファイル検索(mdfind/mdls) |
共通ヘルパー(エスケープ処理を含むAppleScript実行、コマンド実行)はpackages/commonにあり、サーバーから@mcps/commonとして使用されます。
MCPサーバーとは?
MCPは、AIアプリケーション(ホスト)が外部ツールやデータと通信するためのオープン標準です。サーバーは機能(ツール)を提供し、それ自体はAIについて何も知りません。通信はJSON-RPC 2.0を介して行われ、ここではstdio(ローカルプロセス)を使用します。登録とは、サーバーの起動方法をホストに伝えることです。ホストはセッション開始のたびにサーバーをサブプロセスとして起動し、そのツールを照会してAIに提供します。
Related MCP server: macos-mcp-tools
インストール
npm installルートディレクトリでのnpm installで全サーバーに十分です(npm workspaces)。ビルド手順は不要:純粋なESM JavaScript、Node >= 18。
登録
各サーバーは個別のプロセスであるため、個別に登録されます。パスは絶対パスで指定する必要があります。<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--scope userなしの場合、登録は現在のプロジェクトにのみ有効です。確認と削除:
claude mcp list
claude mcp remove spotlightClaude Desktop
~/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の権限
自動化。 初回アクセス時に、macOSはMail、カレンダー、MoneyMoneyへの自動化アクセスを求めます。一度許可してください。
フルディスクアクセス。 保護された場所(例:
~/Library/Mail)は、実行プロセスにフルディスクアクセスが付与されている場合のみ結果を返します(システム設定 → プライバシーとセキュリティ → フルディスクアクセス)。
ローカルでのテスト
各サーバーをMCP Inspectorで個別にクリックしてテスト:
npm run inspect -w @mcps/spotlightライセンス
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