MCP Notion Server

create_page

Create a new page

Input Schema

NameRequiredDescriptionDefault
contentNoContent in markdown format
parent_idYesID of the parent page or database
parent_typeYesType of parent (database or page)
propertiesNoPage properties (required for database pages)
titleNoTitle of the page

Input Schema (JSON Schema)

{ "properties": { "content": { "description": "Content in markdown format", "type": "string" }, "parent_id": { "description": "ID of the parent page or database", "type": "string" }, "parent_type": { "description": "Type of parent (database or page)", "enum": [ "database", "page" ], "type": "string" }, "properties": { "description": "Page properties (required for database pages)", "type": "object" }, "title": { "description": "Title of the page", "type": "string" } }, "required": [ "parent_type", "parent_id" ], "type": "object" }