Update Page
confluence_update_pageModify existing Confluence pages by updating titles, content, structure, and metadata to maintain current documentation and collaboration spaces.
Instructions
Update an existing Confluence page.
Args: ctx: The FastMCP context. page_id: The ID of the page to update. title: The new title of the page. content: The new content of the page (format depends on content_format). is_minor_edit: Whether this is a minor edit. version_comment: Optional comment for this version. parent_id: Optional new parent page ID. content_format: The format of the content ('markdown', 'wiki', or 'storage'). enable_heading_anchors: Whether to enable heading anchors (markdown only). include_content: Whether to include page content in the response. emoji: Optional page title emoji (icon shown in navigation).
Returns: JSON string representing the updated page object.
Raises: ValueError: If Confluence client is not configured, available, or invalid content_format.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page_id | Yes | The ID of the page to update | |
| title | Yes | The new title of the page | |
| content | Yes | The new content of the page. Format depends on content_format parameter | |
| is_minor_edit | No | Whether this is a minor edit | |
| version_comment | No | Optional comment for this version | |
| parent_id | No | Optional the new parent page ID | |
| content_format | No | (Optional) The format of the content parameter. Options: 'markdown' (default), 'wiki', or 'storage'. Wiki format uses Confluence wiki markup syntax | markdown |
| enable_heading_anchors | No | (Optional) Whether to enable automatic heading anchor generation. Only applies when content_format is 'markdown' | |
| include_content | No | (Optional) Whether to include page content in the response. Defaults to false since callers already have the content at update time | |
| emoji | No | (Optional) Page title emoji (icon shown in navigation). Can be any emoji character like '📝', '🚀', '📚'. Set to null/None to remove. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |