Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"apple-reminders": {
"args": [
"/path/to/apple_reminder_mcp_server/server.py"
],
"command": "python3"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server that enables AI assistants to interact with Apple Reminders on macOS. This server provides tools to create, read, list, and delete reminders programmatically through AppleScript.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
uvx 'apple-reminders-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked apple-reminders-mcp against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in productivity
Persistent memory using a knowledge graph
Dynamic problem-solving through sequential thought chains
mini cli search engine for your docs, knowledge bases, meeting notes, whatever. Tracking current sota approaches while being all local
Official Miro MCP server - Supports context to code and creating diagrams, docs, and data tables.
MCP Security Weekly
Get CVE alerts and security updates for Apple_reminder_mcp_server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server that enables AI assistants to interact with Apple Reminders on macOS. This server provides tools to create, read, list, and delete reminders programmatically through AppleScript.
https://github.com/user-attachments/assets/d36e0df3-ff4b-4f48-bb29-41ddb5483c6b
pip install apple-reminders-mcp
git clone https://github.com/shreyanshjain05/apple_reminder_mcp_server.git
cd apple_reminder_mcp_server
pip install -e .
If installed via pip:
apple-reminders-mcp
Or run directly:
python -m apple_reminders_mcp.server
npx @modelcontextprotocol/inspector python3 server.py
This will:
localhost:6277http://localhost:6274Add to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"apple-reminders": {
"command": "python3",
"args": ["/path/to/apple_reminder_mcp_server/server.py"]
}
}
}
Note: Replace
/path/to/with the actual path where you cloned the repo. If you get "Server disconnected" errors, use the full path to your Python executable (runwhich python3to find it).
Creates a new reminder in Apple Reminders.
Parameters:
title (required): The title of the reminderdue_date (required): Due date (e.g., "2024-12-25", "tomorrow", "next Friday")due_time (optional): Time in HHMMSS format (default: 090000 for 9 AM)notes (optional): Additional notes/body textlist_name (optional): Target list name (default: "Reminder Created using Agent")location (optional): Location for location-based remindersExample:
{
"title": "Team Meeting",
"due_date": "tomorrow",
"due_time": "140000",
"notes": "Discuss Q1 goals",
"list_name": "Work"
}
Fetches reminders from a specific list.
Parameters:
list_name (required): Name of the reminder listcompleted (optional): Whether to fetch completed reminders (default: false)limit (optional): Maximum number of reminders to return (default: 20)Returns all available reminder lists. No parameters required.
Deletes a reminder by name.
Parameters:
name (required): The exact name of the reminder to deletelist_name (optional): Specific list to search in (searches all lists if not provided)