Notion MCP Server

update-database

Update an existing database

Input Schema

NameRequiredDescriptionDefault
database_idYesID of the database to update
descriptionNoOptional new description as rich text array
propertiesNoOptional updated properties schema
titleNoOptional new title as rich text array

Input Schema (JSON Schema)

{ "properties": { "database_id": { "description": "ID of the database to update", "type": "string" }, "description": { "description": "Optional new description as rich text array", "type": "array" }, "properties": { "description": "Optional updated properties schema", "type": "object" }, "title": { "description": "Optional new title as rich text array", "type": "array" } }, "required": [ "database_id" ], "type": "object" }