Tool details
Playground
Input schema
input-schema.json
Documentation Index
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
| Field | Value |
|---|---|
| Name | notion__create_database |
| Group | Integrations |
{
"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."
}