get-block-children
Retrieve child blocks of a page or block in Notion using a block ID. Supports pagination to manage large datasets and integrate with AI assistants via the Notion MCP Server.
Instructions
Retrieve the children blocks of a block
Input Schema
Name | Required | Description | Default |
---|---|---|---|
block_id | Yes | ID of the block (page or block) | |
page_size | No | Number of results per page | |
start_cursor | No | Cursor 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"
}