MCP Server Memos

create_memo

Create a new memo

Input Schema

NameRequiredDescriptionDefault
contentYesThe content of the memo.
visibilityNoThe 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" }

You must be authenticated.

Other Tools