archive_completed_tasks
Move completed tasks to a specified archive file in the Memory Bank MCP Server, enabling organized project management and efficient task tracking.
Instructions
归档已完成任务
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| destination | No | 归档目标文件 | |
| projectId | Yes | 项目ID | 
Input Schema (JSON Schema)
{
  "properties": {
    "destination": {
      "description": "归档目标文件",
      "type": "string"
    },
    "projectId": {
      "description": "项目ID",
      "type": "string"
    }
  },
  "required": [
    "projectId"
  ],
  "type": "object"
}