archive_export_project
Export project documents in markdown or HTML format on the Memory Bank MCP Server for streamlined multi-project management and integration with LLM tools.
Instructions
导出项目文档
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| format | No | 导出格式(markdown, html) | |
| projectId | Yes | 项目ID | 
Input Schema (JSON Schema)
{
  "properties": {
    "format": {
      "description": "导出格式(markdown, html)",
      "type": "string"
    },
    "projectId": {
      "description": "项目ID",
      "type": "string"
    }
  },
  "required": [
    "projectId"
  ],
  "type": "object"
}