Roam Research

roam_add_todo

Add a list of todo items as individual blocks to today's daily page in Roam. Each item becomes its own actionable block with todo status.

Input Schema

NameRequiredDescriptionDefault
todosYesList of todo items to add

Input Schema (JSON Schema)

{ "properties": { "todos": { "description": "List of todo items to add", "items": { "description": "Todo item text", "type": "string" }, "type": "array" } }, "required": [ "todos" ], "type": "object" }