updateMemo
Modify existing memos by updating their ID, category, content, or title to ensure accurate and organized information retrieval within the memo-mcp server.
Instructions
Update a memo
Input Schema
Name | Required | Description | Default |
---|---|---|---|
categoryId | No | ||
content | No | ||
id | Yes | The ID of the memo | |
title | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"categoryId": {
"type": "string"
},
"content": {
"type": "string"
},
"id": {
"description": "The ID of the memo",
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}