creative_get_ideas
Retrieve a list of creative ideas filtered by project ID and optional tags, streamlining idea generation and organization within the Memory Bank MCP Server’s multi-project management framework.
Instructions
获取创意列表
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectId | Yes | 项目ID | |
tag | No | 按标签筛选(可选) |
Input Schema (JSON Schema)
{
"properties": {
"projectId": {
"description": "项目ID",
"type": "string"
},
"tag": {
"description": "按标签筛选(可选)",
"type": "string"
}
},
"required": [
"projectId"
],
"type": "object"
}