Roam Research

roam_create_page

Create a new standalone page in Roam from markdown with given title. Best for hierarchical content, reference materials, markdown tables, and topics that deserve their own namespace. Optional initial content will be properly nested as blocks.

Input Schema

NameRequiredDescriptionDefault
contentNoInitial content for the page (optional)
titleYesTitle of the new page

Input Schema (JSON Schema)

{ "properties": { "content": { "description": "Initial content for the page (optional)", "type": "string" }, "title": { "description": "Title of the new page", "type": "string" } }, "required": [ "title" ], "type": "object" }