Skip to main content
Glama
davidlinjiahao

notion-enhanced

move_page

Move a Notion page to a new parent by providing its page ID, parent type, and new parent ID. Use it to reorganize pages across workspaces, databases, or other pages.

Instructions

Move a page to a different parent.

Args: page_id: The ID of the page to move parent_type: "page_id" or "database_id" parent_id: The ID of the new parent

Returns: Moved page info

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
page_idYes
parent_idYes
parent_typeYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral burden, yet it discloses nothing about permissions required, whether child blocks move with the page, reversibility, or failure modes. Only the trivial fact that it returns moved page info is stated, which the output schema already covers.

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-loads the one-line purpose before the args list; little wasted text. The 'Returns' line is redundant given the output schema but is brief and harmless.

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 output schema absolves it of explaining return values, and all parameters are named. However, for a mutation tool with no annotations, the absence of any permission, side-effect, or failure context leaves a real gap.

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?

Schema coverage is 0%, so the description must compensate; it does document all three parameters and, valuably, specifies the accepted values for parent_type ('page_id' or 'database_id'), which the schema does not encode as an enum. It stops short of explaining ID formats or validation rules.

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 ('Move a page') plus the scope ('to a different parent'), which is unambiguous and distinct from sibling tools like create_page or update_block. No explicit sibling differentiation is offered, but the operation is unique enough not to need it.

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?

The description gives no when-to-use guidance, prerequisites, or alternatives (e.g., when to re-parent versus recreating a page). Usage is only implied by the verb itself.

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