startTask
Initiate task execution by updating its status to 'in_progress' using the required Task ID. Use completeTask
to finalize once the task is done.
Instructions
Start a task (change status to in_progress)
Run this tool to start the task.
When the task is complete, call the
completeTask
tool to complete the task.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Task ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "Task ID",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}