MCP Atlassian

by sooperset
Verified

confluence_get_page_children

Retrieve child pages of a specific Confluence page with options to expand fields, include content, and set a limit. Integrates with MCP Atlassian for Confluence and Jira Cloud or Server/Data Center.

Instructions

Get child pages of a specific Confluence page

Input Schema

NameRequiredDescriptionDefault
expandNoFields to expand in the response (e.g., 'version', 'body.storage')version
include_contentNoWhether to include the page content in the response
limitNoMaximum number of child pages to return (1-50)
parent_idYesThe ID of the parent page whose children you want to retrieve

Input Schema (JSON Schema)

{ "properties": { "expand": { "default": "version", "description": "Fields to expand in the response (e.g., 'version', 'body.storage')", "type": "string" }, "include_content": { "default": false, "description": "Whether to include the page content in the response", "type": "boolean" }, "limit": { "default": 25, "description": "Maximum number of child pages to return (1-50)", "maximum": 50, "minimum": 1, "type": "number" }, "parent_id": { "description": "The ID of the parent page whose children you want to retrieve", "type": "string" } }, "required": [ "parent_id" ], "type": "object" }
ID: kc33m1kh5m