- Home
- MCP servers
- Apple Reminders
Apple Reminders
- python
15
GitHub Stars
python
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"chenningling-mcp-applereminders": {
"command": "python",
"args": [
"mcp_pipe.py",
"reminder.py"
],
"env": {
"MCP_ENDPOINT": "YOUR_MCP_ENDPOINT"
}
}
}
}You can run an MCP server that lets you create and query Apple Reminders through natural language commands. This server exposes reminder management through the MCP protocol, enabling you to set titles, notes, dates, and times for reminders and to query them by date ranges or specific days.
How to use
Start the server to enable MCP-based reminder operations, then connect with an MCP client or AI assistant to issue natural language requests. You can create reminders by providing a title (required), an optional note, and optional date and time, and you can query reminders by date ranges or specific days.
Key usage patterns you can perform after the server is running:
- Create reminders by providing a title and optional details like notes, date, and time. Examples include setting a reminder for tomorrow with a title and a note, or scheduling a meeting on Friday at 2:30 PM.
- Query reminders by date range such as today, tomorrow, or this week, or request reminders for a specific date. You can also ask for complete reminder details (title, notes, date and time).
Available tools
create_reminder
Create a new reminder by providing a title, optional note, and optional date and time.
query_reminders
Query existing reminders by date ranges or specific dates to retrieve full details.