SystemPrompt MCP Notion Server

by Ejb503
Verified

systemprompt_update_notion_page

Updates an existing Notion page with rich, comprehensive content based on user instructions. Takes simple inputs and transforms them into well-structured, detailed page content while preserving existing information. Can enhance, reorganize, or expand the current content while maintaining page integrity.

Input Schema

NameRequiredDescriptionDefault
pageIdYesThe unique identifier of the Notion page to update. Must be a valid Notion page ID.
userInstructionsYesNatural language instructions for updating the page. These will be expanded into comprehensive changes, potentially including new sections, enhanced formatting, additional context, and improved structure while respecting existing content. Can include specific changes, content additions, or general directions for improvement.

Input Schema (JSON Schema)

{ "additionalProperties": false, "properties": { "pageId": { "description": "The unique identifier of the Notion page to update. Must be a valid Notion page ID.", "type": "string" }, "userInstructions": { "description": "Natural language instructions for updating the page. These will be expanded into comprehensive changes, potentially including new sections, enhanced formatting, additional context, and improved structure while respecting existing content. Can include specific changes, content additions, or general directions for improvement.", "type": "string" } }, "required": [ "pageId", "userInstructions" ], "type": "object" }