getReminders
Retrieve reminders from specific Apple Reminders lists using the MCP Apple Reminders server, enabling AI assistants to access and manage tasks through natural language commands.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
listName | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"listName": {
"type": "string"
}
},
"required": [
"listName"
],
"type": "object"
}