MCP Atlassian

confluence_update_page

Update an existing Confluence page

Input Schema

NameRequiredDescriptionDefault
contentYesThe new content of the page in Markdown format
minor_editNoWhether this is a minor edit
page_idYesThe ID of the page to update
titleYesThe new title of the page
version_commentNoOptional comment for this version

Input Schema (JSON Schema)

{ "properties": { "content": { "description": "The new content of the page in Markdown format", "type": "string" }, "minor_edit": { "default": false, "description": "Whether this is a minor edit", "type": "boolean" }, "page_id": { "description": "The ID of the page to update", "type": "string" }, "title": { "description": "The new title of the page", "type": "string" }, "version_comment": { "default": "", "description": "Optional comment for this version", "type": "string" } }, "required": [ "page_id", "title", "content" ], "type": "object" }