Notion MCP Server

create-page

Create a new page in a database

Input Schema

NameRequiredDescriptionDefault
childrenNoOptional content blocks
parent_idYesID of the parent database
propertiesYesPage properties

Input Schema (JSON Schema)

{ "properties": { "children": { "description": "Optional content blocks", "type": "array" }, "parent_id": { "description": "ID of the parent database", "type": "string" }, "properties": { "description": "Page properties", "type": "object" } }, "required": [ "parent_id", "properties" ], "type": "object" }