move_to_notes
Transfer reminders to permanent notes for long-term storage and reference, ensuring important tasks and details are retained across AI assistant sessions.
Instructions
Move reminder to permanent notes
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Reminder ID | |
note | No | Additional note (optional) |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "Reminder ID",
"type": "string"
},
"note": {
"description": "Additional note (optional)",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}