Apple Reminders MCP Server

Apple Reminders MCP Server

MCP server enabling AI assistants to create, read, list, and delete Apple Reminders on macOS via AppleScript.

Category
Visit Server

README

Apple Reminders MCP Server

PyPI version Python 3.10+ Apache 2.0 Tests

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.

Features

  • āœ… Create reminders with due dates, times, notes, and locations
  • šŸ“‹ List all reminder lists
  • šŸ” Fetch reminders from specific lists (completed or pending)
  • šŸ—‘ļø Delete reminders by name
  • šŸ¤– Compatible with Claude Desktop and other MCP clients
  • šŸŽ Native macOS integration via AppleScript
  • šŸ”’ Input sanitization to prevent AppleScript injection

Demo

https://github.com/user-attachments/assets/d36e0df3-ff4b-4f48-bb29-41ddb5483c6b

Prerequisites

  • macOS (required for AppleScript)
  • Python 3.10 or higher
  • Apple Reminders app

Installation

Option 1: Install from PyPI (Recommended)

pip install apple-reminders-mcp

Option 2: Install from source

git clone https://github.com/shreyanshjain05/apple_reminder_mcp_server.git
cd apple_reminder_mcp_server
pip install -e .

Usage

Running the Server

If installed via pip:

apple-reminders-mcp

Or run directly:

python -m apple_reminders_mcp.server

Testing with MCP Inspector

npx @modelcontextprotocol/inspector python3 server.py

This will:

  • Start a proxy server on localhost:6277
  • Open the inspector interface in your browser at http://localhost:6274
  • Display a session token for authentication

Integration with Claude Desktop

Add 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 (run which python3 to find it).

Available Tools

1. create_reminder

Creates a new reminder in Apple Reminders.

Parameters:

  • title (required): The title of the reminder
  • due_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 text
  • list_name (optional): Target list name (default: "Reminder Created using Agent")
  • location (optional): Location for location-based reminders

Example:

{
  "title": "Team Meeting",
  "due_date": "tomorrow",
  "due_time": "140000",
  "notes": "Discuss Q1 goals",
  "list_name": "Work"
}

2. get_reminder

Fetches reminders from a specific list.

Parameters:

  • list_name (required): Name of the reminder list
  • completed (optional): Whether to fetch completed reminders (default: false)
  • limit (optional): Maximum number of reminders to return (default: 20)

3. list_reminder_lists

Returns all available reminder lists. No parameters required.

4. delete_reminder

Deletes a reminder by name.

Parameters:

  • name (required): The exact name of the reminder to delete
  • list_name (optional): Specific list to search in (searches all lists if not provided)

Troubleshooting

Common Issues

  1. Permission errors with AppleScript

    • Grant Terminal/IDE permission to control Reminders in System Preferences → Security & Privacy → Automation
  2. "No reminder list found" error

    • Make sure the list name exactly matches (case-sensitive)
    • Use list_reminder_lists to see available lists
  3. Date parsing errors

    • Use standard formats like "YYYY-MM-DD" or natural language like "tomorrow"

Development

Running Tests

pip install -e ".[dev]"
pytest tests/ -v

Project Structure

apple_reminder_mcp_server/
ā”œā”€ā”€ .github/workflows/
│   ā”œā”€ā”€ test.yml           # CI testing
│   └── publish.yml        # PyPI publishing
│── __init__.py
ā”œā”€ā”€ pyproject.toml         # Package configuration
ā”œā”€ā”€ server.py              # Main MCP server implementation
└── README.md 
ā”œā”€ā”€ tests/
│   ā”œā”€ā”€ __init__.py
│   └── test_server.py     # Unit tests

Contributing

See CONTRIBUTING.md for guidelines.

License

This project is licensed under the Apache 2.0 License - see the LICENSE file for details.

Acknowledgments


<p align="center"> <br><br> ⭐ Star this repo if you find it useful! <br><br> ā˜• You can also support me on Ko-fi: https://ko-fi.com/shreyanshjain05 — every coffee keeps me going! </p>

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured