confluence-mcp

update_page

Update an existing Confluence page

Input Schema

NameRequiredDescriptionDefault
contentYesNew page content in storage format
pageIdYesID of the page to update
titleNoNew page title (optional)

Input Schema (JSON Schema)

{ "properties": { "content": { "description": "New page content in storage format", "type": "string" }, "pageId": { "description": "ID of the page to update", "type": "string" }, "title": { "description": "New page title (optional)", "type": "string" } }, "required": [ "pageId", "content" ], "type": "object" }