updateCategory
Modify a category by updating its name or other properties in the memo-mcp MCP server, ensuring accurate organization of recorded memos.
Instructions
Update a category
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The ID of the category | |
name | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "The ID of the category",
"type": "string"
},
"name": {
"minLength": 1,
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}