update_task_description
Modify the description of a task in the 'Divide and Conquer MCP Server', enabling precise updates to task details for efficient progress tracking and management.
Instructions
Updates the main task description.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
task_description | Yes | The new task description |
Input Schema (JSON Schema)
{
"properties": {
"task_description": {
"description": "The new task description",
"type": "string"
}
},
"required": [
"task_description"
],
"type": "object"
}