create-database
Create a new Notion database with a specified title, properties, and optional icon or cover. Assign it to a parent page for organized workspace management.
Instructions
Create a new database
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| cover | No | Optional cover for the database | |
| icon | No | Optional icon for the database | |
| parent_id | Yes | ID of the parent page | |
| properties | Yes | Database properties schema | |
| title | Yes | Database 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"
}