confluence-mcp

create_page

Create a new Confluence page

Input Schema

NameRequiredDescriptionDefault
contentYesPage content in storage format
parentIdNoParent page ID (optional)
spaceKeyYesSpace key where the page will be created
titleYesPage title

Input Schema (JSON Schema)

{ "properties": { "content": { "description": "Page content in storage format", "type": "string" }, "parentId": { "description": "Parent page ID (optional)", "type": "string" }, "spaceKey": { "description": "Space key where the page will be created", "type": "string" }, "title": { "description": "Page title", "type": "string" } }, "required": [ "spaceKey", "title", "content" ], "type": "object" }