Notion MCP Server

by ramidecodes
Verified

update-page

Input Schema

NameRequiredDescriptionDefault
archivedNoWhether to archive the page
page_idYesThe ID of the page to update
propertiesYesJSON string of page properties to update

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "archived": { "description": "Whether to archive the page", "type": "boolean" }, "page_id": { "description": "The ID of the page to update", "type": "string" }, "properties": { "description": "JSON string of page properties to update", "type": "string" } }, "required": [ "page_id", "properties" ], "type": "object" }