get_memo
Fetch the full Markdown content and metadata of a specific memo by its ID. Use after listing or searching memos to read the body.
Instructions
Fetch the full details of a single memo by ID, including the Markdown content body. Typically called after list_memos or search to read a memo's body. Example: {"id":"abc12345"} returns {"id":"abc12345-...","title":"...","content":"# heading...","tags":[...]}. Side effects: read-only. Errors if the id does not exist or belongs to another user.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Memo UUID. Short IDs (first 8 characters of the UUID) are also accepted. |