tasks_update
ActiveTool of io.github.saloprj/dialogbrain
declared in 1.17.0
Update an existing task. Set status='done' to complete it, 'cancelled' to cancel. Use summary for completion notes.
Parameters schema
{
"type": "object",
"required": [
"task_id"
],
"properties": {
"due_at": {
"type": "string",
"description": "ISO datetime"
},
"status": {
"enum": [
"pending",
"in_progress",
"done",
"cancelled"
],
"type": "string"
},
"summary": {
"type": "string",
"description": "Completion note (stored when marking done)"
},
"task_id": {
"type": "integer",
"description": "ID of the task to update"
},
"agent_id": {
"type": "integer",
"description": "Agent ID whose task to update. Required when calling from MCP."
},
"priority": {
"enum": [
"low",
"medium",
"high",
"urgent"
],
"type": "string"
},
"description": {
"type": "string"
}
}
}Parent server
io.github.saloprj/dialogbrain
https://github.com/saloprj/dialogbrain-mcp
1/7 registries