implement_add_note
Add detailed notes to projects in the Memory Bank MCP Server, enabling organized documentation of project-specific information, related tasks, and implementation details.
Instructions
记录实现细节
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | 笔记内容 | |
projectId | Yes | 项目ID | |
relatedTasks | No | 相关任务ID列表 | |
title | Yes | 笔记标题 |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "笔记内容",
"type": "string"
},
"projectId": {
"description": "项目ID",
"type": "string"
},
"relatedTasks": {
"description": "相关任务ID列表",
"items": {
"type": "string"
},
"type": "array"
},
"title": {
"description": "笔记标题",
"type": "string"
}
},
"required": [
"projectId",
"title",
"content"
],
"type": "object"
}