- Explore MCP Servers
- apple-reminders-mcp
Apple Reminders Mcp
What is Apple Reminders Mcp
apple-reminders-mcp is a Model Context Protocol (MCP) server designed for interacting with Apple Reminders on macOS, enabling users to manage their reminders programmatically.
Use cases
Use cases include automating reminder creation for tasks, integrating reminder functionalities into third-party applications, and managing reminders in bulk for enhanced productivity.
How to use
To use apple-reminders-mcp, configure it in your ‘claude_desktop_config.json’ file by specifying the command and arguments to run the server. You can also use NPX for easier setup in the future.
Key features
Key features include list management, reminder retrieval, creation of new reminders, marking reminders as completed, deleting reminders, and proper handling of ISO date formats for due dates.
Where to use
apple-reminders-mcp can be used in personal productivity applications, task management systems, and any software that requires integration with Apple Reminders on macOS.
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Overview
What is Apple Reminders Mcp
apple-reminders-mcp is a Model Context Protocol (MCP) server designed for interacting with Apple Reminders on macOS, enabling users to manage their reminders programmatically.
Use cases
Use cases include automating reminder creation for tasks, integrating reminder functionalities into third-party applications, and managing reminders in bulk for enhanced productivity.
How to use
To use apple-reminders-mcp, configure it in your ‘claude_desktop_config.json’ file by specifying the command and arguments to run the server. You can also use NPX for easier setup in the future.
Key features
Key features include list management, reminder retrieval, creation of new reminders, marking reminders as completed, deleting reminders, and proper handling of ISO date formats for due dates.
Where to use
apple-reminders-mcp can be used in personal productivity applications, task management systems, and any software that requires integration with Apple Reminders on macOS.
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Content
MCP Apple Reminders
A Model Context Protocol (MCP) server for interacting with Apple Reminders on macOS.
Features
- List Management: View all reminder lists in your Apple Reminders app
- Reminder Retrieval: Get all reminders from a specific list
- Create Reminders: Create new reminders with titles, due dates, and notes
- Complete Reminders: Mark reminders as completed
- Delete Reminders: Remove reminders from your lists
- Date Handling: Proper handling of ISO date formats for due dates
Configuration
Usage with Claude Desktop
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"apple-reminders": {
"command": "node",
"args": [
"/path/to/mcp-apple-reminders/dist/index.js"
]
}
}
}
NPX (Coming Soon)
{
"mcpServers": {
"apple-reminders": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-apple-reminders"
]
}
}
}
API
The server exposes the following MCP tools for interacting with Apple Reminders:
getLists
Returns all reminder lists.
getReminders
Returns reminders from a specific list.
- Parameters:
listName(required): The name of the reminder list
createReminder
Creates a new reminder.
- Parameters:
listName(required): The name of the reminder listtitle(required): The title of the reminderdueDate(optional): The due date for the reminder (ISO format: “YYYY-MM-DDTHH:MM:SS.sssZ”)notes(optional): Notes for the reminder
completeReminder
Marks a reminder as completed.
- Parameters:
listName(required): The name of the reminder listreminderName(required): The name of the reminder to complete
deleteReminder
Deletes a reminder.
- Parameters:
listName(required): The name of the reminder listreminderName(required): The name of the reminder to delete
How It Works
This MCP server uses AppleScript to interact with the Apple Reminders app on macOS. It provides a standardized interface for AI assistants to manage reminders through the Model Context Protocol.
Development
This project uses TypeScript and the MCP SDK. To extend functionality, modify the tools in src/index.ts and the AppleScript functions in src/reminders.ts.
Requirements
- macOS (required for Apple Reminders integration)
- Node.js 16+
- Apple Reminders app configured with at least one list
License
MIT
Dev Tools Supporting MCP
The following are the main code editors that support the Model Context Protocol. Click the link to visit the official website for more information.










