Get Page Children
confluence_get_page_childrenRetrieve child pages and folders from a Confluence page to navigate content structure, with options for pagination, content inclusion, and format conversion.
Instructions
Get child pages and folders of a specific Confluence page.
Args: ctx: The FastMCP context. parent_id: The ID of the parent page. expand: Fields to expand. limit: Maximum number of child items. include_content: Whether to include page content. convert_to_markdown: Convert content to markdown if include_content is true. start: Starting index for pagination. include_folders: Whether to include child folders (default: True).
Returns: JSON string representing a list of child page and folder objects.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| parent_id | Yes | The ID of the parent page whose children you want to retrieve | |
| expand | No | Fields to expand in the response (e.g., 'version', 'body.storage') | version |
| limit | No | Maximum number of child items to return (1-50) | |
| include_content | No | Whether to include the page content in the response | |
| convert_to_markdown | No | Whether to convert page content to markdown (true) or keep it in raw HTML format (false). Only relevant if include_content is true. | |
| start | No | Starting index for pagination (0-based) | |
| include_folders | No | Whether to include child folders in addition to child pages |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |