taskStepAdd
Add new steps to tasks in projects by specifying the task ID, step description, and optional order or estimated time using this MCP server tool.
Instructions
為任務添加新步驟
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| description | Yes | ||
| estimatedTime | No | ||
| order | No | ||
| taskId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"estimatedTime": {
"type": "number"
},
"order": {
"type": "number"
},
"taskId": {
"type": "string"
}
},
"required": [
"taskId",
"description"
],
"type": "object"
}