Notion MCP Server

by ramidecodes
Verified

create-page

Input Schema

NameRequiredDescriptionDefault
childrenNoJSON string of page content blocks
parent_idYesID of the parent database or page
parent_typeYesType of parent (database or page)
propertiesYesJSON string of page properties

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "children": { "description": "JSON string of page content blocks", "type": "string" }, "parent_id": { "description": "ID of the parent database or page", "type": "string" }, "parent_type": { "description": "Type of parent (database or page)", "enum": [ "database_id", "page_id" ], "type": "string" }, "properties": { "description": "JSON string of page properties", "type": "string" } }, "required": [ "parent_type", "parent_id", "properties" ], "type": "object" }