plan_update_tasks
Manage and update task planning documents for specific projects within the Memory Bank MCP Server to ensure organized and structured project workflows.
Instructions
更新任务规划文档
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | 任务文档内容 | |
projectId | Yes | 项目ID |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "任务文档内容",
"type": "string"
},
"projectId": {
"description": "项目ID",
"type": "string"
}
},
"required": [
"projectId",
"content"
],
"type": "object"
}