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

# sophos-central-mobile

> Sophos Mobile — mobile device management, device groups, and enrollment

**Server path:** `/sophos-central-mobile` | **Type:** Application | **PCID required:** Yes

## Tools

| Tool                                                                                                    | Description                |
| ------------------------------------------------------------------------------------------------------- | -------------------------- |
| [`sophos-central-mobile_create_mobile_device`](#sophos-central-mobile_create_mobile_device)             | Create mobile device       |
| [`sophos-central-mobile_create_mobile_device_group`](#sophos-central-mobile_create_mobile_device_group) | Create mobile device group |
| [`sophos-central-mobile_delete_device`](#sophos-central-mobile_delete_device)                           | Delete mobile device       |
| [`sophos-central-mobile_delete_device_group`](#sophos-central-mobile_delete_device_group)               | Delete mobile device group |
| [`sophos-central-mobile_get_device`](#sophos-central-mobile_get_device)                                 | Get mobile device details  |
| [`sophos-central-mobile_get_device_group`](#sophos-central-mobile_get_device_group)                     | Get mobile device group    |
| [`sophos-central-mobile_list_mobile_device_groups`](#sophos-central-mobile_list_mobile_device_groups)   | List mobile device groups  |
| [`sophos-central-mobile_list_mobile_devices`](#sophos-central-mobile_list_mobile_devices)               | List mobile devices        |
| [`sophos-central-mobile_update_mobile_device`](#sophos-central-mobile_update_mobile_device)             | Update mobile device       |
| [`sophos-central-mobile_update_mobile_device_group`](#sophos-central-mobile_update_mobile_device_group) | Update mobile device group |

***

## sophos-central-mobile\_create\_mobile\_device

Create mobile device

**Parameters:**

| Parameter | Type   | Required | Default | Description           |
| --------- | ------ | -------- | ------- | --------------------- |
| `name`    | string | Yes      | —       | Device name           |
| `osType`  | string | Yes      | —       | Operating system type |
| `owner`   | string | Yes      | —       | Device owner          |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "name": {
        "type": "string",
        "description": "Device name"
      },
      "osType": {
        "type": "string",
        "description": "Operating system type"
      },
      "owner": {
        "type": "string",
        "description": "Device owner"
      }
    },
    "required": [
      "PCID",
      "name",
      "osType",
      "owner"
    ]
  }
  ```
</Expandable>

***

## sophos-central-mobile\_create\_mobile\_device\_group

Create mobile device group

**Parameters:**

| Parameter     | Type   | Required | Default | Description       |
| ------------- | ------ | -------- | ------- | ----------------- |
| `description` | string | No       | —       | Group description |
| `name`        | string | Yes      | —       | Group name        |

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

***

## sophos-central-mobile\_delete\_device

Delete mobile device

**Parameters:**

| Parameter  | Type   | Required | Default | Description |
| ---------- | ------ | -------- | ------- | ----------- |
| `deviceId` | string | Yes      | —       | Device ID   |

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

***

## sophos-central-mobile\_delete\_device\_group

Delete mobile device group

**Parameters:**

| Parameter | Type   | Required | Default | Description |
| --------- | ------ | -------- | ------- | ----------- |
| `groupId` | string | Yes      | —       | Group ID    |

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

***

## sophos-central-mobile\_get\_device

Get mobile device details

**Parameters:**

| Parameter  | Type   | Required | Default | Description |
| ---------- | ------ | -------- | ------- | ----------- |
| `deviceId` | string | Yes      | —       | Device ID   |

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

***

## sophos-central-mobile\_get\_device\_group

Get mobile device group

**Parameters:**

| Parameter | Type   | Required | Default | Description |
| --------- | ------ | -------- | ------- | ----------- |
| `groupId` | string | Yes      | —       | Group ID    |

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

***

## sophos-central-mobile\_list\_mobile\_device\_groups

List mobile device groups

**Parameters:**

| Parameter  | Type    | Required | Default | Description    |
| ---------- | ------- | -------- | ------- | -------------- |
| `pageSize` | integer | No       | —       | Items per page |
| `page`     | integer | No       | —       | Page number    |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "pageSize": {
        "type": "integer",
        "description": "Items per page"
      },
      "page": {
        "type": "integer",
        "description": "Page number"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## sophos-central-mobile\_list\_mobile\_devices

List mobile devices

**Parameters:**

| Parameter          | Type    | Required | Default | Description                 |
| ------------------ | ------- | -------- | ------- | --------------------------- |
| `pageSize`         | integer | No       | —       | Items per page              |
| `page`             | integer | No       | —       | Page number                 |
| `search`           | string  | No       | —       | Search by device name       |
| `osType`           | string  | No       | —       | Filter by OS type           |
| `complianceStatus` | string  | No       | —       | Filter by compliance status |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "pageSize": {
        "type": "integer",
        "description": "Items per page"
      },
      "page": {
        "type": "integer",
        "description": "Page number"
      },
      "search": {
        "type": "string",
        "description": "Search by device name"
      },
      "osType": {
        "type": "string",
        "description": "Filter by OS type"
      },
      "complianceStatus": {
        "type": "string",
        "description": "Filter by compliance status"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## sophos-central-mobile\_update\_mobile\_device

Update mobile device

**Parameters:**

| Parameter  | Type   | Required | Default | Description         |
| ---------- | ------ | -------- | ------- | ------------------- |
| `deviceId` | string | Yes      | —       | Device ID           |
| `groupId`  | string | No       | —       | Group to assign     |
| `name`     | string | No       | —       | Updated device name |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "deviceId": {
        "type": "string",
        "description": "Device ID"
      },
      "groupId": {
        "type": "string",
        "description": "Group to assign"
      },
      "name": {
        "type": "string",
        "description": "Updated device name"
      }
    },
    "required": [
      "PCID",
      "deviceId"
    ]
  }
  ```
</Expandable>

***

## sophos-central-mobile\_update\_mobile\_device\_group

Update mobile device group

**Parameters:**

| Parameter     | Type   | Required | Default | Description         |
| ------------- | ------ | -------- | ------- | ------------------- |
| `groupId`     | string | Yes      | —       | Group ID            |
| `description` | string | No       | —       | Updated description |
| `name`        | string | No       | —       | Updated group name  |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "groupId": {
        "type": "string",
        "description": "Group ID"
      },
      "description": {
        "type": "string",
        "description": "Updated description"
      },
      "name": {
        "type": "string",
        "description": "Updated group name"
      }
    },
    "required": [
      "PCID",
      "groupId"
    ]
  }
  ```
</Expandable>
