GonMCPtool

taskStepUpdate

Update specific steps within a task such as descriptions, completion status, order, or estimated time using the taskStepUpdate tool in GonMCPtool.

Instructions

更新任務的特定步驟

Input Schema

NameRequiredDescriptionDefault
stepIdYes
taskIdYes
updatesYes

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "stepId": { "type": "string" }, "taskId": { "type": "string" }, "updates": { "additionalProperties": false, "properties": { "completed": { "type": "boolean" }, "description": { "type": "string" }, "estimatedTime": { "type": "number" }, "order": { "type": "number" } }, "type": "object" } }, "required": [ "taskId", "stepId", "updates" ], "type": "object" }
ID: 8xcb3w59pl