retrieve_block_children
Retrieve child elements of a specific block in Notion using the block ID. Supports pagination for handling large datasets. Integrates with the Notion MCP Server for API interactions.
Instructions
Retrieve the children of a block from Notion
Input Schema
Name | Required | Description | Default |
---|---|---|---|
blockId | Yes | The ID of the block to retrieve children for | |
page_size | No | Number of results to return (1-100) | |
start_cursor | No | Cursor 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"
}