Notion MCP Server

get-block-children

Retrieve the children blocks of a block

Input Schema

NameRequiredDescriptionDefault
block_idYesID of the block (page or block)
page_sizeNoNumber of results per page
start_cursorNoCursor for pagination

Input Schema (JSON Schema)

{ "properties": { "block_id": { "description": "ID of the block (page or block)", "type": "string" }, "page_size": { "default": 100, "description": "Number of results per page", "type": "number" }, "start_cursor": { "description": "Cursor for pagination", "type": "string" } }, "required": [ "block_id" ], "type": "object" }