list_memos
List your memos (Markdown notes) in reverse chronological order. Returns IDs, titles, tags, and timestamps for quick overview. Use with get_memo to read specific content.
Instructions
List all memos (free-form Markdown notes) belonging to the user, newest first. Returns id, title, tags, and timestamps for each memo, but NOT the full Markdown body — call get_memo to read a specific memo's body. Memos have no status or due date; for actionable tasks use list_todos. Example: returns [{"id":"abc12345-...","title":"Daily notes","tags":["work"],"created_at":"2026-05-27T..."}, ...]. Workflow: typically followed by get_memo(id) when the user wants to read a specific memo's content. Side effects: read-only.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||