move-task
Move a task to a new status (todo, inProgress, done) within the Kanban MCP Server to update and manage task progress effectively.
Instructions
move a task to a different status
Input Schema
Name | Required | Description | Default |
---|---|---|---|
new_status | Yes | ||
task_id | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"new_status": {
"enum": [
"todo",
"inProgress",
"done"
],
"type": "string"
},
"task_id": {
"type": "string"
}
},
"required": [
"task_id",
"new_status"
],
"type": "object"
}