implement_update_progress
Track and update task progress on Memory Bank MCP Server by specifying project ID, task ID, status, and completion percentage for streamlined project management.
Instructions
更新开发进度
Input Schema
Name | Required | Description | Default |
---|---|---|---|
completion | No | 完成百分比(0-100) | |
projectId | Yes | 项目ID | |
status | Yes | 任务状态(not_started, in_progress, completed) | |
taskId | Yes | 任务ID |
Input Schema (JSON Schema)
{
"properties": {
"completion": {
"description": "完成百分比(0-100)",
"type": "number"
},
"projectId": {
"description": "项目ID",
"type": "string"
},
"status": {
"description": "任务状态(not_started, in_progress, completed)",
"type": "string"
},
"taskId": {
"description": "任务ID",
"type": "string"
}
},
"required": [
"projectId",
"taskId",
"status"
],
"type": "object"
}