MCP Notion Server

append_blocks

Append blocks to a page

Input Schema

NameRequiredDescriptionDefault
blocksYesArray of block objects to append
page_idYesID of the page

Input Schema (JSON Schema)

{ "properties": { "blocks": { "description": "Array of block objects to append", "type": "array" }, "page_id": { "description": "ID of the page", "type": "string" } }, "required": [ "page_id", "blocks" ], "type": "object" }