createCategory
Generate and manage new categories for organizing memos in the memo-mcp server. Specify a category name to streamline storage and retrieval.
Instructions
Create a new category
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"minLength": 1,
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}