Skip to main content
Create a new page in a Confluence space (uses v2 API; requires spaceId from list_spaces)

Tool details

FieldValue
Nameconfluence__create_page
GroupIntegrations

Playground

Input schema

Input schema
{
  "type": "object",
  "properties": {
    "cloudId": {
      "type": "string",
      "description": "Atlassian cloud ID from accessible-resources"
    },
    "spaceId": {
      "type": "string",
      "description": "Numeric space ID (use list_spaces to get the id field)"
    },
    "title": {
      "type": "string",
      "description": "Page title"
    },
    "status": {
      "type": "string",
      "description": "Page status"
    },
    "parentId": {
      "type": "string",
      "description": "Parent page ID (optional)"
    },
    "body": {
      "type": "object",
      "description": "Page body, e.g. {representation: 'storage', value: '<p>content</p>'}"
    }
  },
  "required": [
    "cloudId",
    "spaceId",
    "title",
    "body"
  ],
  "description": "Input schema for the confluence__create_page tool."
}

Output schema

This tool does not publish an output schema.