taskStepDelete
Remove specific steps from tasks in GonMCPtool by specifying taskId and stepId, streamlining task management for efficient project workflows.
Instructions
刪除任務的特定步驟
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| stepId | Yes | ||
| taskId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"stepId": {
"type": "string"
},
"taskId": {
"type": "string"
}
},
"required": [
"taskId",
"stepId"
],
"type": "object"
}