Notion / warm
Get Block Children
Retrieve paginated first-level child blocks for a page or block. Use recursively when you need structured traversal or child-page discovery.
Quick Start
aweb inspect notion.get_block_children
aweb add notion
aweb plan "use Notion get block children in an agent workflow"import Aweb, { Agent } from '@aweb/sdk';
const aweb = new Aweb({ apiKey: process.env.AWEB_API_KEY });
const agent = new Agent({ tools: aweb.tools });
agent.add('notion');
const plan = await agent.plan('Use Notion for this workflow');
const tool = await aweb.tools.inspect('notion.get_block_children');
console.log(plan.nextAction);
console.log(tool.inputSchema);Tool Card
Tool idnotion.get_block_children
ProviderNotion (notion)
Tool nameget_block_children
Activationwarm
Healthhealthy
Trust score1.00
Transportstreamable_http
Latencynot yet measured
Cost0
Requirements and Governance
Authoauth_2_1_pkce
Credentialsetup_required
Workspacerequired
Approvalnone
RiskREAD
Permissionsread_content, update_content, insert_content, read
Credential setup/api/mcp-warehouse/credentials/notion/init
Schemas
{
"type": "object",
"properties": {
"block_id": {
"type": "string",
"description": "Parent page or block id (UUID). A page id is also a block id."
},
"start_cursor": {
"type": "string",
"description": "Pagination cursor from prior call"
},
"page_size": {
"type": "integer",
"description": "Max results (default 100, max 100)"
}
},
"required": [
"block_id"
],
"additionalProperties": false
}Examples
[
{
"objective": "Use Notion get block children in an agent workflow.",
"args": {
"block_id": "<block_id>",
"start_cursor": "<start_cursor>",
"page_size": "<page_size>"
}
}
]