updateTask
Modify task details such as name, description, status, or resolution using the task ID within the task-orchestrator-mcp server. Update existing tasks efficiently.
Instructions
Update an existing task
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | Updated task description (optional) | |
id | Yes | Task ID | |
name | No | Updated task name (optional) | |
resolution | No | Task resolution details (optional) | |
status | No | Updated task status (optional) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"description": {
"description": "Updated task description (optional)",
"type": "string"
},
"id": {
"description": "Task ID",
"type": "string"
},
"name": {
"description": "Updated task name (optional)",
"type": "string"
},
"resolution": {
"description": "Task resolution details (optional)",
"type": "string"
},
"status": {
"description": "Updated task status (optional)",
"enum": [
"todo",
"in_progress",
"done"
],
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}