Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Create a new Notion database as a subpage with a property schema
notion__create_database
{ "type": "object", "properties": { "parent": { "type": "object", "description": "Notion parent object, e.g. {type: 'page_id', page_id: '...'}" }, "title": { "type": "array", "description": "Database title as an array of rich text objects" }, "properties": { "type": "object", "description": "Database property schema, e.g. {Name: {title: {}}, Status: {select: {options: [...]}}}" }, "is_inline": { "type": "boolean", "description": "Whether the database appears inline in the parent page" } }, "required": [ "parent", "title", "properties" ], "description": "Input schema for the notion__create_database tool." }