create_memo
Create new memos with markdown content and visibility controls for knowledge management. Supports public, protected, or private access levels.
Instructions
Create a new memo.
Args: content: The content of the memo (supports Markdown) visibility: Visibility level - PUBLIC, PROTECTED, or PRIVATE (default: PRIVATE)
Returns: JSON string containing the created memo details
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| content | Yes | ||
| visibility | No | PRIVATE |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"type": "string"
},
"visibility": {
"default": "PRIVATE",
"type": "string"
}
},
"required": [
"content"
],
"type": "object"
}