reflect_create
Capture and create project reflection records in Memory Bank MCP Server by providing project ID, title, and content for structured documentation and analysis.
Instructions
创建项目反思记录
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | 反思内容 | |
projectId | Yes | 项目ID | |
title | Yes | 反思标题 |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "反思内容",
"type": "string"
},
"projectId": {
"description": "项目ID",
"type": "string"
},
"title": {
"description": "反思标题",
"type": "string"
}
},
"required": [
"projectId",
"title",
"content"
],
"type": "object"
}