confluence_get_page_children
Retrieve child pages of a specific Confluence parent page. Supports pagination, content inclusion, and markdown conversion.
Instructions
Get child pages 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 pages. include_content: Whether to include page content. convert_to_markdown: Convert content to markdown if include_content is true. start: Starting index for pagination.
Returns: JSON string representing a list of child page objects.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of child pages to return (1-50) | |
| start | No | Starting index for pagination (0-based) | |
| expand | No | Fields to expand in the response (e.g., 'version', 'body.storage') | version |
| parent_id | Yes | The ID of the parent page whose children you want to retrieve | |
| 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. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |