{
"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.
Is it safe?
No known CVEs for apple-reminders-mcp.
No authentication — any process on your machine can connect.
Apache-2.0. View license →
Is it maintained?
Last commit 6 days ago. 11 stars.
Will it work with my client?
Transport: stdio, sse. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
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:
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
Official Notion MCP Server
Give AI agents access to your Obsidian vault via local files or Self-hosted LiveSync.
🗂️🤖 Airtable Model Context Protocol Server, for allowing AI systems to interact with your Airtable bases
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)