Notion MCP Server

create-database

Create a new database

Input Schema

NameRequiredDescriptionDefault
coverNoOptional cover for the database
iconNoOptional icon for the database
parent_idYesID of the parent page
propertiesYesDatabase properties schema
titleYesDatabase title as rich text array

Input Schema (JSON Schema)

{ "properties": { "cover": { "description": "Optional cover for the database", "type": "object" }, "icon": { "description": "Optional icon for the database", "type": "object" }, "parent_id": { "description": "ID of the parent page", "type": "string" }, "properties": { "description": "Database properties schema", "type": "object" }, "title": { "description": "Database title as rich text array", "type": "array" } }, "required": [ "parent_id", "title", "properties" ], "type": "object" }