Notion MCP Server

update-page

Update an existing page

Input Schema

NameRequiredDescriptionDefault
archivedNoWhether to archive the page
page_idYesID of the page to update
propertiesYesUpdated page properties

Input Schema (JSON Schema)

{ "properties": { "archived": { "description": "Whether to archive the page", "type": "boolean" }, "page_id": { "description": "ID of the page to update", "type": "string" }, "properties": { "description": "Updated page properties", "type": "object" } }, "required": [ "page_id", "properties" ], "type": "object" }