notion_get_block
Fetch a Notion block's details by block ID to inspect its content, type, and properties for further processing.
Instructions
Get block by ID
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| block_id | Yes | Block ID to fetch |
Fetch a Notion block's details by block ID to inspect its content, type, and properties for further processing.
Get block by ID
| Name | Required | Description | Default |
|---|---|---|---|
| block_id | Yes | Block ID to fetch |
Changes observed during successful MCP inspections.
v1.6.1Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden, and it discloses nothing beyond the verb. It does not say whether the block's children are included, what happens on a missing/invalid ID, or what permission scope is required.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single four-word phrase with zero waste and the essential information front-loaded. It is efficient rather than padded, though the terseness contributes to the gaps elsewhere.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is genuinely simple: one required string parameter and no nested objects. With no output schema and no annotations, the description does not explain the returned block shape, but for a trivial ID lookup the minimal statement is nearly adequate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% and the single parameter is already documented in the schema as 'Block ID to fetch'. The description adds no format or sourcing detail beyond that, so the baseline 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States a specific verb+resource ('Get block') and includes the lookup key ('by ID'), which is enough to distinguish it from notion_get_block_children or notion_get_page. It does not explicitly name or exclude any sibling, so it stops short of a 5.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
There is no guidance on when to use this tool versus notion_get_block_children, notion_get_page, or notion_search. The agent must infer the use case purely from the name.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.