Roam Research

roam_recall

Retrieve all stored memories on page titled MEMORIES_TAG, or tagged block content with the same name. Returns a combined, deduplicated list of memories. Optionally filter blcoks with a specified tag and sort by creation date.

Input Schema

NameRequiredDescriptionDefault
filter_tagNoInclude only memories with a specific filter tag. For single word tags use format "tag", for multi-word tags use format "tag word" (without brackets)
sort_byNoSort order for memories based on creation datenewest

Input Schema (JSON Schema)

{ "properties": { "filter_tag": { "description": "Include only memories with a specific filter tag. For single word tags use format \"tag\", for multi-word tags use format \"tag word\" (without brackets)", "type": "string" }, "sort_by": { "default": "newest", "description": "Sort order for memories based on creation date", "enum": [ "newest", "oldest" ], "type": "string" } }, "type": "object" }