create_project
Initiate and manage new projects on the Memory Bank MCP Server by defining project names and descriptions, enabling organized multi-project Markdown document handling and LLM tool integration.
Instructions
创建新项目
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| description | No | 项目描述 | |
| name | Yes | 项目名称 | 
Input Schema (JSON Schema)
{
  "properties": {
    "description": {
      "description": "项目描述",
      "type": "string"
    },
    "name": {
      "description": "项目名称",
      "type": "string"
    }
  },
  "required": [
    "name"
  ],
  "type": "object"
}