create_memo
Generate and store new memos with customizable content and visibility settings, enabling organized and secure note management through the MCP Server Memos interface.
Instructions
Create a new memo
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | The content of the memo. | |
visibility | No | The visibility of the memo. | PRIVATE |
Input Schema (JSON Schema)
{
"$defs": {
"Visibility": {
"enum": [
"PUBLIC",
"PROTECTED",
"PRIVATE"
],
"title": "Visibility",
"type": "string"
}
},
"description": "Request to create memo",
"properties": {
"content": {
"description": "The content of the memo.",
"title": "Content",
"type": "string"
},
"visibility": {
"$ref": "#/$defs/Visibility",
"default": "PRIVATE",
"description": "The visibility of the memo."
}
},
"required": [
"content"
],
"title": "CreateMemoRequest",
"type": "object"
}