archive_generate_summary
Generate summary reports for projects by specifying project ID, report title, and sections to include, using the MCP server for multi-project document management.
Instructions
生成项目总结报告
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| includeSections | No | 包含的章节 | |
| projectId | Yes | 项目ID | |
| title | No | 报告标题 | 
Input Schema (JSON Schema)
{
  "properties": {
    "includeSections": {
      "description": "包含的章节",
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "projectId": {
      "description": "项目ID",
      "type": "string"
    },
    "title": {
      "description": "报告标题",
      "type": "string"
    }
  },
  "required": [
    "projectId"
  ],
  "type": "object"
}