Skip to main content
Glama

notion_retrieve_block_children

Retrieve child blocks like paragraphs, headings, and lists from a Notion page or block. Supports pagination to access all nested content in manageable batches.

Instructions

Retrieves child blocks (paragraphs, headings, lists, etc.) of page or block. Supports pagination

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
extractNoResponse fields to extract. If omitted, returns recommended fields: ['content_saved_to']. Use ['none'] to return all fields.
block_idYesBlock ID or page ID
page_sizeNoNumber of results per page (max 100)
start_cursorNoPagination cursor

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.7/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It conveys that the operation is a read ('Retrieves') and that pagination is supported, which is useful. It does not mention response format, error behavior, or rate limits, but for a simple read operation the disclosed traits are reasonable.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two short sentences with zero wasted words. The core action is front-loaded, the parenthetical makes the content type concrete, and the pagination note is a valuable addition. It neither repeats the tool name nor pads with filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The schema is rich enough to cover all parameter semantics, and the description states the core operation and pagination support. However, with no output schema and no annotations, the description does not explain what the response looks like beyond the extract parameter's schema description. It is functional but slightly minimal for a tool with four parameters.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema has 100% coverage with descriptive entries for all four parameters, including the extract behavior and pagination cursors. The description adds no parameter-specific information beyond the schema, so the baseline of 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb 'Retrieves', a specific resource 'children blocks', and gives concrete exmples (paragraphs, headings, lists). The phrase 'of page or block' also signals that both container types are valid inputs. This clearly distinguishes it from sibling tools like notion_retrieve_block, which would fetch a single block rather than its children.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description clearly implies usage: call this when you need the child blocks of a page or block. However, it does not explicitly mention when not to use it or point to any alternative tool, such as using notion_retrieve_block for the block itself. The context is clear, but the routing guidance is left implicit rather than stated.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.