move_page
Relocate a Confluence page to a different space or parent page by specifying the page ID, target space key, and optional parent ID. Simplify content organization on the Confluence MCP Server.
Instructions
Move a Confluence page to a different space or parent
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pageId | Yes | Page ID to move | |
| parentId | No | Optional: New parent page ID in the target space | |
| targetSpaceKey | Yes | Target space key to move the page to |
Input Schema (JSON Schema)
{
"properties": {
"pageId": {
"description": "Page ID to move",
"type": "string"
},
"parentId": {
"description": "Optional: New parent page ID in the target space",
"type": "string"
},
"targetSpaceKey": {
"description": "Target space key to move the page to",
"type": "string"
}
},
"required": [
"pageId",
"targetSpaceKey"
],
"type": "object"
}