You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
macOS system control MCP server. Gives AI tools native access to Calendar, Reminders, Shortcuts, system info, notifications, and clipboard — all through the Model Context Protocol.
Built with Swift 6 and the MCP Swift SDK. Requires macOS 14+.
Install
Download the signed .pkg from GitHub Releases, then install:
# Replace VERSION with the latest release tag (e.g. v0.2.0)
open "https://github.com/seayniclabs/binnacle/releases/latest"
For local development, build from source:
git clone https://github.com/seayniclabs/binnacle.git
cd binnacle
swift build -c release
Release (Signed + Notarized)
Use the release script to build, sign, package, notarize, and verify:
export BINNACLE_VERSION=v0.2.0
export APP_SIGN_IDENTITY="Developer ID Application: <Team Name> (<TEAM_ID>)"export PKG_SIGN_IDENTITY="Developer ID Installer: <Team Name> (<TEAM_ID>)"export NOTARY_PROFILE="<notarytool-keychain-profile>"
./scripts/release-notarize.sh
Create a new reminder (title, due_date, priority, list_name)
reminders_complete
Mark a reminder as complete (reminder_id)
Shortcuts (3)
Tool
Description
shortcuts_list
List all Shortcuts available on this Mac
shortcuts_run
Run a Shortcut by name with optional text input
shortcuts_folders
List Shortcut folders
System Info (3)
Tool
Description
system_get_info
CPU usage, memory, disk space, battery level/charging, uptime
system_get_display_info
Resolution and connected displays
system_get_volume
Audio output volume level and mute state
Notifications (1)
Tool
Description
notification_send
Send a macOS notification (title, body, subtitle)
Clipboard (2)
Tool
Description
clipboard_read
Read text from the macOS clipboard
clipboard_write
Write text to the macOS clipboard
Spotlight (1)
Tool
Description
spotlight_search
Search files by name, content, kind, and date
Finder (3)
Tool
Description
finder_tags
List/get/set Finder tags on files
finder_info
Extended file info (Spotlight metadata, Finder comments)
get_downloads
List recent downloads with size/date
Apps (2)
Tool
Description
open_app
Launch or activate an app by name
get_running_apps
List running applications
Display (1)
Tool
Description
get_display_settings
Current display configuration and arrangement
Appearance (2)
Tool
Description
toggle_dark_mode
Toggle light/dark appearance
toggle_dnd
Toggle Do Not Disturb / Focus mode
Network (1)
Tool
Description
get_wifi_info
Current WiFi network, signal, and IP details
Power (1)
Tool
Description
get_battery_status
Battery level, charging state, and health details
Storage (1)
Tool
Description
get_storage_summary
Disk usage breakdown by volume/category
Utility (1)
Tool
Description
ping
Health check — returns server version and status
Requirements
macOS 14 (Sonoma) or later
Xcode 16.3+ (build only)
Calendar and Reminders access granted via setup command
Using with a Gateway
If you're running multiple MCP servers, route them through a gateway like tbxark/mcp-proxy to manage all child processes from a single persistent service. The proxy handles process lifecycle, centralized config, and crash recovery — each server still gets its own SSE endpoint but you manage everything from one config file instead of scattered Claude Code entries.