creative_add_idea
Add and organize creative ideas in the Memory Bank MCP Server by specifying project ID, title, content, and tags for efficient multi-project Markdown document management.
Instructions
创建创意记录
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | 创意内容 | |
projectId | Yes | 项目ID | |
tags | No | 标签列表 | |
title | Yes | 创意标题 |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "创意内容",
"type": "string"
},
"projectId": {
"description": "项目ID",
"type": "string"
},
"tags": {
"description": "标签列表",
"items": {
"type": "string"
},
"type": "array"
},
"title": {
"description": "创意标题",
"type": "string"
}
},
"required": [
"projectId",
"title",
"content"
],
"type": "object"
}