SystemPrompt MCP Notion Server

by Ejb503
Verified

systemprompt_create_notion_page

Creates a rich, comprehensive Notion page that expands upon basic user inputs. Takes simple instructions and content, then generates a detailed, well-structured page with appropriate sections, formatting, and supplementary content.

Input Schema

NameRequiredDescriptionDefault
databaseIdYesThe ID of the database to create the page in
userInstructionsYesBasic instructions or outline for the page content. These will be expanded into a comprehensive structure with appropriate sections, formatting, and enhanced detail. Can include desired title, key points, or general direction.

Input Schema (JSON Schema)

{ "additionalProperties": false, "properties": { "databaseId": { "description": "The ID of the database to create the page in", "type": "string" }, "userInstructions": { "description": "Basic instructions or outline for the page content. These will be expanded into a comprehensive structure with appropriate sections, formatting, and enhanced detail. Can include desired title, key points, or general direction.", "type": "string" } }, "required": [ "databaseId", "userInstructions" ], "type": "object" }