Skip to main content
Glama
davidlinjiahao

notion-enhanced

get_block_children

Retrieve child blocks from a Notion page or block by ID, with pagination and auto-fetch options to load all nested content.

Instructions

Retrieve children blocks of a block or page.

Args: block_id: The ID of the parent block or page page_size: Number of results per page (max 100) start_cursor: Cursor for pagination fetch_all: If True, auto-paginate all children. Default True.

Returns: Dict with results list and pagination info

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
block_idYes
fetch_allNo
page_sizeNo
start_cursorNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

B3.4/5.0
Behavior3/5

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

No annotations are provided, so the description carries the burden. It discloses the fetch_all default (True, auto-paginate) which is genuinely useful behavioral context. However, it does not state permissions, rate limits, ordering, or what happens with deeply nested children.

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

Conciseness4/5

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

Front-loaded purpose sentence followed by compact Args and Returns sections. Every line earns its place, though the Args block largely restates the schema titles with little added detail for block_id.

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

Completeness4/5

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

An output schema exists, so return values needn't be detailed, and the description still summarizes them. With no annotations, the description addresses pagination and parameter defaults adequately, though it omits safety/behavioral traits.

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

Parameters4/5

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

Schema description coverage is 0%, so the description must compensate. It documents all four parameters including the fetch_all auto-pagination semantics, which the schema's title 'Fetch All' does not explain. Minor gap: it doesn't clarify page_size interaction with fetch_all.

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

Purpose4/5

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

States a specific verb and resource ('Retrieve children blocks of a block or page') and distinguishes itself from get_block (single block) by targeting children. The 'or page' phrasing is slightly loose but the scope is clear.

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

Usage Guidelines2/5

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

No guidance is given on when to use this instead of get_block, get_page, or append_blocks. An agent gets no signal about hierarchy traversal vs single-block retrieval, which matters given the many sibling tools.

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