update_rule
Modify rule content and descriptions in the Memory Bank MCP Server to manage multi-project Markdown documents effectively. Input rule ID and new content for updates.
Instructions
更新规则内容
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | 规则新内容 | |
description | No | 规则描述 | |
id | Yes | 规则ID |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "规则新内容",
"type": "string"
},
"description": {
"description": "规则描述",
"type": "string"
},
"id": {
"description": "规则ID",
"type": "string"
}
},
"required": [
"id",
"content"
],
"type": "object"
}