implement_update_context
Update active context documents within Memory Bank MCP Server by specifying project ID and content, ensuring project isolation and integration with LLM tools.
Instructions
更新活动上下文文档
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | 上下文文档内容 | |
projectId | Yes | 项目ID |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "上下文文档内容",
"type": "string"
},
"projectId": {
"description": "项目ID",
"type": "string"
}
},
"required": [
"projectId",
"content"
],
"type": "object"
}