notion-mcp-server

by awkoy
Verified

retrieve_block_children

Retrieve the children of a block from Notion

Input Schema

NameRequiredDescriptionDefault
blockIdYesThe ID of the block to retrieve children for
page_sizeNoNumber of results to return (1-100)
start_cursorNoCursor for pagination

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "blockId": { "description": "The ID of the block to retrieve children for", "type": "string" }, "page_size": { "description": "Number of results to return (1-100)", "maximum": 100, "minimum": 1, "type": "number" }, "start_cursor": { "description": "Cursor for pagination", "type": "string" } }, "required": [ "blockId" ], "type": "object" }