MCP Atlassian

by sooperset
Verified

confluence_create_page

Create a new Confluence page by specifying title, content, space key, and optional parent page ID. Simplify page creation in Confluence with structured input and Markdown support.

Instructions

Create a new Confluence page

Input Schema

NameRequiredDescriptionDefault
contentYesThe content of the page in Markdown format. Supports headings, lists, tables, code blocks, and other Markdown syntax
parent_idNoOptional parent page ID. If provided, this page will be created as a child of the specified page
space_keyYesThe key of the space to create the page in (usually a short uppercase code like 'DEV', 'TEAM', or 'DOC')
titleYesThe title of the page

Input Schema (JSON Schema)

{ "properties": { "content": { "description": "The content of the page in Markdown format. Supports headings, lists, tables, code blocks, and other Markdown syntax", "type": "string" }, "parent_id": { "description": "Optional parent page ID. If provided, this page will be created as a child of the specified page", "type": "string" }, "space_key": { "description": "The key of the space to create the page in (usually a short uppercase code like 'DEV', 'TEAM', or 'DOC')", "type": "string" }, "title": { "description": "The title of the page", "type": "string" } }, "required": [ "space_key", "title", "content" ], "type": "object" }
ID: kc33m1kh5m