Copy Page
confluence_copy_pageDuplicate a Confluence page to another space or under a parent page. Provide the source page ID, target space key, and new title.
Instructions
Copy a Confluence page to a new location.
On Confluence Cloud the native copy endpoint is used. On Server/Data Center the page body is fetched and a new page is created manually (attachments are not copied in the Server/DC path).
Args: ctx: The FastMCP context. source_page_id: The ID of the page to copy. destination_space_key: Space key for the new page. new_title: Title for the new copied page. destination_parent_id: Optional parent page ID in the destination space. copy_attachments: Whether to copy attachments (Cloud only).
Returns: JSON string representing the new page.
Raises: ValueError: If Confluence client is not configured or available.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| new_title | Yes | Title for the new copied page | |
| source_page_id | Yes | The ID of the page to copy | |
| copy_attachments | No | (Optional) Whether to copy attachments to the new page. Defaults to true. Only supported on Confluence Cloud. | |
| destination_parent_id | No | (Optional) Parent page ID in the destination space. When omitted the page is created at the space root. | |
| destination_space_key | Yes | Space key for the new page (e.g. 'DEV', 'TEAM') |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |