Manages the authenticated user's daily standup report. Add tasks to today's standup, set comments per task, or set a summary. Creates today's standup if it does not exist.
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 | Action to perform: "add_task" to add a task to standup, "set_summary" to set/update the standup summary. |
task_id |
integer | no | Task ID to add (for add_task action). |
search |
string | no | Search for a task by name/description or "#number" (for add_task action). |
comment |
string | no | Comment for the task in the standup (for add_task action, optional). |
summary |
string | no | Overall standup summary text (for set_summary action). |
Example prompt
Use manage-standup-tool to help me with the relevant Taskavel task.
Example call
{
"name": "manage-standup-tool",
"arguments": {}
}