Notion
createPage
Creates a new page as a child of an existing page or database.
Remote kamolc4/notion-mcp
Other tools also called createPage?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"parent": {
"type": "object",
"properties": {
"page_id": {
"type": "string"
},
"database_id": {
"type": "string"
}
},
"description": "The parent page or database."
},
"children": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Block"
},
"description": "Initial block content of the page."
},
"properties": {
"type": "object",
"description": "Property values of the new page, keyed by property name."
}
}
}