update_task
Modify an existing task's description or status on the coderide MCP server by providing its unique identifier (e.g., 'CRD-1'). Requires at least one update field to proceed.
Instructions
Updates an existing task's 'description' and/or 'status'. The task is identified by its unique 'number' (e.g., 'CRD-1'). At least one of 'description' or 'status' must be provided for an update.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | Optional. The new description for the task. If provided, it will replace the existing task description. | |
number | Yes | The unique identifier for the task to be updated (e.g., 'CRD-1'). Must follow the format: three uppercase letters, a hyphen, and one or more digits. | |
status | No | Optional. The new status for the task. Must be one of: 'to-do', 'in-progress', 'completed'. If provided, it will update the task's current status. |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"description": {
"description": "Optional. The new description for the task. If provided, it will replace the existing task description.",
"type": "string"
},
"number": {
"description": "The unique identifier for the task to be updated (e.g., 'CRD-1'). Must follow the format: three uppercase letters, a hyphen, and one or more digits.",
"pattern": "^[A-Z]{3}-\\d+$",
"type": "string"
},
"status": {
"description": "Optional. The new status for the task. Must be one of: 'to-do', 'in-progress', 'completed'. If provided, it will update the task's current status.",
"enum": [
"to-do",
"in-progress",
"completed"
],
"type": "string"
}
},
"required": [
"number"
],
"type": "object"
}