Skip to main content
Glama
davidlinjiahao

notion-enhanced

create_page

Create a standalone Notion page under a page or workspace by setting parent, title, and optional markdown content. Use it for pages, not database rows.

Instructions

Create a standalone page (not a database row).

For creating database rows, use create_database_row instead.

Args: parent_type: "page_id" or "workspace" (for top-level pages) parent_id: The ID of the parent page (ignored if workspace) title: Page title properties: Optional additional properties content: Optional markdown content for the page body

Returns: Created page with ID and URL

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleYes
contentNo
parent_idYes
propertiesNo
parent_typeYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A4.2/5.0
Behavior3/5

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

No annotations are supplied, so the description carries the full behavioral burden. It discloses the standalone-vs-row semantic and that parent_id is ignored when parent_type is 'workspace', which is genuinely useful. However, it says nothing about required permissions/auth, whether creation is reversible, or rate limits for a mutating tool.

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?

Front-loads the core definition and the routing rule, then uses tight Args/Returns headings. Every line carries information; nothing is padded.

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 need not be explained, and the description still sketches the return (ID and URL). For a 5-param mutating tool with zero annotations, the main gap is the absence of permission/authorization context.

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, and it largely does: it enumerates all five params including the enum-like values for parent_type ('page_id' or 'workspace') and the conditional ignore rule for parent_id. 'properties: Optional additional properties' remains vague, which keeps this below 5.

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?

States a specific verb+resource ('Create a standalone page') and immediately distinguishes it from the database-row case, naming the sibling create_database_row. An agent can separate this from create_database_row and create_database without opening a schema.

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

Usage Guidelines4/5

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

Explicitly routes to create_database_row for the contrasting case, which is the most likely confusion among siblings. It does not cover other adjacent cases (e.g. append_markdown / append_blocks for adding to an existing page), so usage context is clear but not exhaustive.

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