update_document
Update or regenerate specific document types like project briefs, product context, and system patterns within the Memory Bank MCP server to maintain accurate and structured project knowledge.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| content | No | ||
| documentType | Yes | ||
| regenerate | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"content": {
"type": "string"
},
"documentType": {
"enum": [
"projectbrief",
"productContext",
"systemPatterns",
"techContext",
"activeContext",
"progress"
],
"type": "string"
},
"regenerate": {
"default": false,
"type": "boolean"
}
},
"required": [
"documentType"
],
"type": "object"
}