completeTask
Mark a task as complete and retrieve the next task for execution in the task-orchestrator-mcp server to streamline task management.
Instructions
Complete a task and get the next task to execute.
To start the next task, execute startTask
.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Task ID | |
resolution | Yes | Task completion resolution/details |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "Task ID",
"type": "string"
},
"resolution": {
"description": "Task completion resolution/details",
"type": "string"
}
},
"required": [
"id",
"resolution"
],
"type": "object"
}