confluence_create_page
Create a Confluence page using Markdown content. Converts Markdown to Atlassian Document Format and submits via API, with optional images and parent page.
Instructions
Create a new Confluence page. The content field accepts Markdown — the server converts it to ADF (Atlassian Document Format) using the official @atlaskit transformer and submits it via the v2 API. The returned content is the ADF JSON document. Do not pass storage-format HTML or hand-written ADF JSON.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | Page title | |
| images | No | Optional array of images to upload and embed. Use {{IMAGE:filename}} placeholders in content to position images inline, or they will be appended at the end. Provide either filePath or fileContent for each image. | |
| content | Yes | Page content as Markdown. Converted to ADF before submission. | |
| parentId | No | Optional parent page ID | |
| spaceKey | Yes | The space key where to create the page |