update_document
Modify and synchronize project-specific document content on the Memory Bank MCP Server, supporting types like project briefs, tasks, and custom formats for streamlined collaboration.
Instructions
更新文档内容
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | 文档内容 | |
projectId | Yes | 项目ID | |
type | Yes | 文档类型 (projectbrief, productContext, activeContext, systemPatterns, techContext, progress, tasks, custom) |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "文档内容",
"type": "string"
},
"projectId": {
"description": "项目ID",
"type": "string"
},
"type": {
"description": "文档类型 (projectbrief, productContext, activeContext, systemPatterns, techContext, progress, tasks, custom)",
"type": "string"
}
},
"required": [
"projectId",
"type",
"content"
],
"type": "object"
}