confluence_create
Create a page in Confluence using JFM markdown or raw ADF JSON. Specify space key, title, content; optionally nest under a parent. Returns the new page ID.
Instructions
Create a new Confluence page from JFM markdown (default) or raw ADF JSON. JFM is GitHub-style markdown, NOT Confluence wiki markup — see resource omni-dev://specs/jfm for syntax. Returns the new page's ID. Mirrors omni-dev atlassian confluence create.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| content | Yes | Page body. Parsed according to `format`. For `format = "jfm"` (the default), this is GitHub-style markdown, NOT Confluence wiki markup. Use `##` not `h2.`, triple-backtick fences not `{code}`, backtick inline code not `{{...}}`. Full reference: MCP resource `omni-dev://specs/jfm`. | |
| format | No | Format of `content`: `"jfm"` (default markdown) or `"adf"` (raw ADF JSON). | |
| parent_id | No | Optional parent page ID for nesting under an existing page. | |
| space_key | Yes | Target Confluence space key (e.g., `"ENG"`). | |
| title | Yes | Page title. |