MCP Atlassian

confluence_create_page

Create a new Confluence page

Input Schema

NameRequiredDescriptionDefault
contentYesThe content of the page in Markdown format
parent_idNoOptional parent page ID
space_keyYesThe key of the space to create the page in
titleYesThe title of the page

Input Schema (JSON Schema)

{ "properties": { "content": { "description": "The content of the page in Markdown format", "type": "string" }, "parent_id": { "description": "Optional parent page ID", "type": "string" }, "space_key": { "description": "The key of the space to create the page in", "type": "string" }, "title": { "description": "The title of the page", "type": "string" } }, "required": [ "space_key", "title", "content" ], "type": "object" }