> ## Documentation Index
> Fetch the complete documentation index at: https://mcp-atlassian.soomiles.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Confluence Templates

> List page templates and create pages from them

<Note>These tools are only available for Confluence Cloud. Server/Data Center does not expose the template REST API.</Note>

### List Page Templates

List Confluence page content templates.

**Parameters:**

| Parameter   | Type      | Required | Description                                                                                              |
| ----------- | --------- | -------- | -------------------------------------------------------------------------------------------------------- |
| `space_key` | `string`  | No       | Optional space key to list templates defined in that space. When omitted, global templates are returned. |
| `limit`     | `integer` | No       | Maximum number of templates to return.                                                                   |

***

### Get Page Template

Get a Confluence page template by ID, including its storage-format body.

**Parameters:**

| Parameter     | Type     | Required | Description                         |
| ------------- | -------- | -------- | ----------------------------------- |
| `template_id` | `string` | Yes      | The ID of the template to retrieve. |

***

### Create Page from Template

Create a new Confluence page pre-populated with a template's body.

<Note>This is a **write** tool. Disabled when `READ_ONLY_MODE=true`.</Note>

**Parameters:**

| Parameter     | Type     | Required | Description                                   |
| ------------- | -------- | -------- | --------------------------------------------- |
| `space_key`   | `string` | Yes      | Key of the space in which to create the page. |
| `title`       | `string` | Yes      | Title for the new page.                       |
| `template_id` | `string` | Yes      | ID of the template to use as the page body.   |
| `parent_id`   | `string` | No       | Optional ID of the parent page.               |

***
