> ## 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 Permissions

> Inspect content and space permissions

### Check Content Permissions

Check whether a user or group can perform an operation on specific content.

**Parameters:**

| Parameter         | Type     | Required | Description                                                                                                                                    |
| ----------------- | -------- | -------- | ---------------------------------------------------------------------------------------------------------------------------------------------- |
| `content_id`      | `string` | Yes      | Confluence content ID (page, blog post, comment, or attachment). Example: '123456789'                                                          |
| `user_identifier` | `string` | Yes      | Account ID of the user (for subject\_type='user') or group ID (for subject\_type='group'). Example user account ID: '5b10a2844c20165700ede21g' |
| `operation`       | `string` | Yes      | The operation to check. Common values: 'read', 'update', 'delete', 'export', 'purge', 'administer', 'create\_or\_delete\_from\_view'.          |
| `subject_type`    | `string` | No       | Whether the subject is a 'user' or a 'group'. Defaults to 'user'.                                                                              |
| **Example:**      |          |          |                                                                                                                                                |

```json theme={null}
{"content_id": "12345678", "user_identifier": "5b10a2844c20165700ede21g", "operation": "read"}
```

<Warning>
  This tool is only available for Confluence Cloud. Calling it on Server/Data Center raises `ValueError` because those deployments use different permission APIs.
</Warning>

***

### Get Space Permissions

List all permission assignments for a Confluence space.

**Parameters:**

| Parameter    | Type      | Required | Description                                                                                                                                                                                                     |
| ------------ | --------- | -------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `space_id`   | `string`  | Yes      | Numeric ID of the Confluence space. This is the internal space ID, not the space key. Example: '98304'. You can find the space ID from the Confluence REST API (GET /wiki/api/v2/spaces) or from the space URL. |
| `limit`      | `integer` | No       | Maximum number of permission entries to return. Defaults to 25.                                                                                                                                                 |
| `cursor`     | `string`  | No       | Optional pagination cursor from a previous response.                                                                                                                                                            |
| **Example:** |           |          |                                                                                                                                                                                                                 |

```json theme={null}
{"space_id": "98304", "limit": 50}
```

<Warning>
  This tool is only available for Confluence Cloud. Calling it on Server/Data Center raises `ValueError` because those deployments use different permission APIs.
</Warning>

***
