Manages reminders on a task. Use action=add to schedule a reminder, list to read a task's reminders, or remove to delete one by id. Requires owner, admin, or member role.
Safety: Write
Tool names, field names, and schema descriptions remain in canonical MCP English so copied calls match the server exactly.
Input schema
| Field | Type | Required | Description |
|---|---|---|---|
action |
string | yes | One of: add, list, remove. |
task_id |
integer | no | The task ID. Provide this or search. |
search |
string | no | Search the task by name, description, or "#number". |
remind_at |
string | no | When to remind, as "YYYY-MM-DD HH:MM" or "YYYY-MM-DD" (for action add). |
note |
string | no | Optional note for the reminder (for action add). |
reminder_id |
integer | no | The reminder ID to delete (for action remove). |
Example prompt
Use manage-task-reminders-tool to help me with the relevant Taskavel task.
Example call
{
"name": "manage-task-reminders-tool",
"arguments": {}
}