create-page
Generate a new page within a specified Notion database, including custom properties and optional content blocks, using the Notion MCP Server for AI-assisted workspace management.
Instructions
Create a new page in a database
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| children | No | Optional content blocks | |
| parent_id | Yes | ID of the parent database | |
| properties | Yes | Page properties | 
Input Schema (JSON Schema)
{
  "properties": {
    "children": {
      "description": "Optional content blocks",
      "type": "array"
    },
    "parent_id": {
      "description": "ID of the parent database",
      "type": "string"
    },
    "properties": {
      "description": "Page properties",
      "type": "object"
    }
  },
  "required": [
    "parent_id",
    "properties"
  ],
  "type": "object"
}