plan_add_task
Add new tasks to a project's task list with specified descriptions, priorities, and deadlines using Memory Bank MCP Server.
Instructions
添加新任务到任务列表
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deadline | No | 截止日期(YYYY-MM-DD格式) | |
priority | No | 优先级(high, medium, low) | |
projectId | Yes | 项目ID | |
task | Yes | 任务描述 |
Input Schema (JSON Schema)
{
"properties": {
"deadline": {
"description": "截止日期(YYYY-MM-DD格式)",
"type": "string"
},
"priority": {
"description": "优先级(high, medium, low)",
"type": "string"
},
"projectId": {
"description": "项目ID",
"type": "string"
},
"task": {
"description": "任务描述",
"type": "string"
}
},
"required": [
"projectId",
"task"
],
"type": "object"
}