> ## Documentation Index
> Fetch the complete documentation index at: https://docs.pinkfish.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# jamf

> Apple device management

**Server path:** `/jamf` | **Type:** Application | **PCID required:** Yes

## Tools

| Tool                                                        | Description                             |
| ----------------------------------------------------------- | --------------------------------------- |
| [`jamf_retrieve_user_list`](#jamf_retrieve_user_list)       | Retrieve all user accounts in Jamf Pro  |
| [`jamf_create_computer_group`](#jamf_create_computer_group) | Create a new computer group in Jamf Pro |

***

## jamf\_retrieve\_user\_list

Retrieve all user accounts in Jamf Pro

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## jamf\_create\_computer\_group

Create a new computer group in Jamf Pro

**Parameters:**

| Parameter   | Type   | Required | Default | Description                     |
| ----------- | ------ | -------- | ------- | ------------------------------- |
| `groupName` | string | Yes      | —       | Name for the new computer group |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID"
      },
      "groupName": {
        "type": "string",
        "description": "Name for the new computer group"
      }
    },
    "required": [
      "PCID",
      "groupName"
    ]
  }
  ```
</Expandable>
