update_task_status
Update the completion status of tasks within structured coding workflows, ensuring accurate progress tracking and phased development management in the Vibe-Coder MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
completed | Yes | ||
featureId | Yes | ||
phaseId | Yes | ||
taskId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"completed": {
"type": "boolean"
},
"featureId": {
"minLength": 1,
"type": "string"
},
"phaseId": {
"minLength": 1,
"type": "string"
},
"taskId": {
"minLength": 1,
"type": "string"
}
},
"required": [
"featureId",
"phaseId",
"taskId",
"completed"
],
"type": "object"
}