Notion

createDatabase

Creates a new database as a child page of an existing Notion page.

Remote kamolc4/notion-mcp

Other tools also called createDatabase? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "title": {
      "type": "array",
      "items": {
        "type": "object"
      },
      "description": "Title of the database as rich text."
    },
    "parent": {
      "type": "object",
      "required": [
        "page_id"
      ],
      "properties": {
        "page_id": {
          "type": "string",
          "description": "ID of the parent page."
        }
      }
    },
    "properties": {
      "type": "object",
      "description": "Schema of the database properties (columns), keyed by property name."
    }
  }
}
          

Provider

Notion →