create_memo
Create a free-form Markdown note for ideas, plans, or general notes. Optional tags help organize content.
Instructions
Create a new memo (free-form Markdown note) in the konbu planner. Returns the created memo with its assigned UUID. Use this for notes without a due date or completion state; use create_todo for actionable tasks, and create_event for time-bound calendar items. Example: {"title":"Q3 plans","content":"## Goals\n- ship MCP","tags":["work","planning"]} → {"id":"...","title":"Q3 plans",...}. Side effects: writes a new record on each call — calling twice creates two memos. Not idempotent.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| content | No | Memo body in Markdown. Supports headings, lists, code blocks, and inline tag references such as #project. Optional. | |
| tags | No | Tag names to attach to the memo. Tags are created on-the-fly if they don't exist yet. Optional. | |
| title | Yes | Memo title — short, indexed for search. Required. |