create_page
Generate a new Confluence page with specified space, title, content, and optional parent page ID using secure access through the Confluence MCP Server.
Instructions
Create a new Confluence page
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | Page content (HTML or storage format) | |
parentId | No | Optional: Parent page ID | |
spaceKey | Yes | Target space key | |
title | Yes | Page title |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "Page content (HTML or storage format)",
"type": "string"
},
"parentId": {
"description": "Optional: Parent page ID",
"type": "string"
},
"spaceKey": {
"description": "Target space key",
"type": "string"
},
"title": {
"description": "Page title",
"type": "string"
}
},
"required": [
"spaceKey",
"title",
"content"
],
"type": "object"
}