reminders
Verified Safeby cardmagic
Overview
Fuzzy search, browse, create, and complete Apple Reminders from the command line or as an MCP server on macOS.
Installation
npx -y @cardmagic/reminders --mcpSecurity Notes
The server primarily interacts with Apple Reminders via `osascript`, which executes AppleScript. While `osascript` can be a vector for code execution, the tool carefully sanitizes user-provided input (e.g., reminder titles, notes) via `escapeAppleScript` before embedding it into the script. The core AppleScript logic is hardcoded within the application, limiting arbitrary command injection. It requires 'Full Disk Access' permission for the terminal, which is necessary to read Apple's Reminders database but represents a significant trust requirement from the user. Communication for the MCP server is over standard I/O (stdio), minimizing network attack surface. No hardcoded secrets or obvious malicious patterns were found.
Similar Servers
messages
Fuzzy search and browse Apple Messages (iMessage/SMS) from the command line or as an MCP server.
mcp-server-apple-events
Integrate Apple Reminders and Calendar with MCP clients for comprehensive management and automation on macOS.
MCPbundler
Manages and runs Agent Skills and Model Context Protocol (MCP) servers locally on macOS, providing a unified endpoint for various AI clients and automation workflows.
ACMS
Provides programmatic access to Apple's container CLI tool on macOS via Model Context Protocol (MCP) for AI agents.