remind_me
Set and manage personalized reminders with priority levels to ensure tasks and notes are tracked across sessions. Simplify organization for AI-assisted workflows.
Instructions
Add a reminder
Input Schema
Name | Required | Description | Default |
---|---|---|---|
priority | No | Priority level (default: normal) | |
reminder | Yes | What to remember |
Input Schema (JSON Schema)
{
"properties": {
"priority": {
"description": "Priority level (default: normal)",
"enum": [
"high",
"normal",
"low"
],
"type": "string"
},
"reminder": {
"description": "What to remember",
"type": "string"
}
},
"required": [
"reminder"
],
"type": "object"
}