check_reminders
View and filter your reminders by priority (all, high, normal, low) to stay organized and manage tasks effectively with MCP Reminders.
Instructions
Check your reminders
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filter | No | Filter by priority (default: all) |
Input Schema (JSON Schema)
{
"properties": {
"filter": {
"description": "Filter by priority (default: all)",
"enum": [
"all",
"high",
"normal",
"low"
],
"type": "string"
}
},
"type": "object"
}