Apple MCP Server

by Dhravya
Verified

reminders

Search, create, and open reminders in Apple Reminders app

Input Schema

NameRequiredDescriptionDefault
dueDateNoDue date for the reminder in ISO format (optional for create operation)
listIdNoID of the list to get reminders from (required for listById operation)
listNameNoName of the list to create the reminder in (optional for create operation)
nameNoName of the reminder to create (required for create operation)
notesNoAdditional notes for the reminder (optional for create operation)
operationYesOperation to perform: 'list', 'search', 'open', 'create', or 'listById'
propsNoProperties to include in the reminders (optional for listById operation)
searchTextNoText to search for in reminders (required for search and open operations)

Input Schema (JSON Schema)

{ "properties": { "dueDate": { "description": "Due date for the reminder in ISO format (optional for create operation)", "type": "string" }, "listId": { "description": "ID of the list to get reminders from (required for listById operation)", "type": "string" }, "listName": { "description": "Name of the list to create the reminder in (optional for create operation)", "type": "string" }, "name": { "description": "Name of the reminder to create (required for create operation)", "type": "string" }, "notes": { "description": "Additional notes for the reminder (optional for create operation)", "type": "string" }, "operation": { "description": "Operation to perform: 'list', 'search', 'open', 'create', or 'listById'", "enum": [ "list", "search", "open", "create", "listById" ], "type": "string" }, "props": { "description": "Properties to include in the reminders (optional for listById operation)", "items": { "type": "string" }, "type": "array" }, "searchText": { "description": "Text to search for in reminders (required for search and open operations)", "type": "string" } }, "required": [ "operation" ], "type": "object" }

You must be authenticated.

Other Tools