MCP Notion Server

create_database

Create a new database

Input Schema

NameRequiredDescriptionDefault
parent_idYesID of the parent page
propertiesYesDatabase properties schema
titleYesTitle of the database

Input Schema (JSON Schema)

{ "properties": { "parent_id": { "description": "ID of the parent page", "type": "string" }, "properties": { "description": "Database properties schema", "type": "object" }, "title": { "description": "Title of the database", "type": "string" } }, "required": [ "parent_id", "title", "properties" ], "type": "object" }