create_confluence_page
Create a new Confluence page in a given space using Markdown content, which is automatically converted to Confluence format. Optionally nest it under a parent page.
Instructions
Create a new Confluence page in a given space. REQUIRED: Always provide Markdown content. Supports headers, lists, bold, italic, code blocks, tables, links, images, and more. Content is automatically converted to Confluence storage format (HTML). Optionally nest the page under a parent page.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | The title of the new page. | |
| spaceKey | Yes | The key of the Confluence space to create the page in (e.g. 'ENG'). | |
| parentPageId | No | Optional. The ID of an existing page to nest this new page under. | |
| markdownContent | Yes | REQUIRED. The page body in Markdown format. Use headers (# ## ###), lists (*, -), bold (**text**), italic (*text*), code blocks (```), tables (| col |), links ([text](url)), and images. This will be converted to HTML for Confluence. |