complete_task
Mark a task as completed by specifying the task ID, instance ID, and result to update task status and maintain orchestration progress within the MCP Orchestrator Server.
Instructions
Mark a task as completed
Input Schema
Name | Required | Description | Default |
---|---|---|---|
instance_id | Yes | ID of the instance completing the task | |
result | Yes | Result or output from the task | |
task_id | Yes | ID of the task to complete |
Input Schema (JSON Schema)
{
"properties": {
"instance_id": {
"description": "ID of the instance completing the task",
"type": "string"
},
"result": {
"description": "Result or output from the task",
"type": "string"
},
"task_id": {
"description": "ID of the task to complete",
"type": "string"
}
},
"required": [
"task_id",
"instance_id",
"result"
],
"type": "object"
}