Microsoft Intune · Capability

Microsoft Intune Graph API — Device Configurations

Microsoft Intune Graph API — Device Configurations. 5 operations. Lead operation: Microsoft Intune List device configurations. Self-contained Naftiko capability covering one Microsoft Intune business surface.

Run with Naftiko Microsoft IntuneDevice Configurations

What You Can Do

GET
Listdeviceconfigurations — Microsoft Intune List device configurations
/v1/devicemanagement/deviceconfigurations
GET
Getdeviceconfiguration — Microsoft Intune Get device configuration
/v1/devicemanagement/deviceconfigurations/{deviceconfigurationid}
PATCH
Updatedeviceconfiguration — Microsoft Intune Update device configuration
/v1/devicemanagement/deviceconfigurations/{deviceconfigurationid}
DELETE
Deletedeviceconfiguration — Microsoft Intune Delete device configuration
/v1/devicemanagement/deviceconfigurations/{deviceconfigurationid}
POST
Assigndeviceconfiguration — Microsoft Intune Assign device configuration
/v1/devicemanagement/deviceconfigurations/{deviceconfigurationid}/assign

MCP Tools

microsoft-intune-list-device-configurations

Microsoft Intune List device configurations

read-only idempotent
microsoft-intune-get-device-configuration

Microsoft Intune Get device configuration

read-only idempotent
microsoft-intune-update-device-configuration

Microsoft Intune Update device configuration

idempotent
microsoft-intune-delete-device-configuration

Microsoft Intune Delete device configuration

idempotent
microsoft-intune-assign-device-configuration

Microsoft Intune Assign device configuration

Capability Spec

microsoft-intune-device-configurations.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Microsoft Intune Graph API — Device Configurations
  description: 'Microsoft Intune Graph API — Device Configurations. 5 operations. Lead operation: Microsoft Intune List device
    configurations. Self-contained Naftiko capability covering one Microsoft Intune business surface.'
  tags:
  - Microsoft Intune
  - Device Configurations
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    MICROSOFT_INTUNE_API_KEY: MICROSOFT_INTUNE_API_KEY
capability:
  consumes:
  - type: http
    namespace: microsoft-intune-device-configurations
    baseUri: https://graph.microsoft.com/v1.0
    description: Microsoft Intune Graph API — Device Configurations business capability. Self-contained, no shared references.
    resources:
    - name: deviceManagement-deviceConfigurations
      path: /deviceManagement/deviceConfigurations
      operations:
      - name: listdeviceconfigurations
        method: GET
        description: Microsoft Intune List device configurations
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: deviceManagement-deviceConfigurations-deviceConfigurationId
      path: /deviceManagement/deviceConfigurations/{deviceConfigurationId}
      operations:
      - name: getdeviceconfiguration
        method: GET
        description: Microsoft Intune Get device configuration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updatedeviceconfiguration
        method: PATCH
        description: Microsoft Intune Update device configuration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletedeviceconfiguration
        method: DELETE
        description: Microsoft Intune Delete device configuration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: deviceManagement-deviceConfigurations-deviceConfigurationId-assign
      path: /deviceManagement/deviceConfigurations/{deviceConfigurationId}/assign
      operations:
      - name: assigndeviceconfiguration
        method: POST
        description: Microsoft Intune Assign device configuration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.MICROSOFT_INTUNE_API_KEY}}'
  exposes:
  - type: rest
    namespace: microsoft-intune-device-configurations-rest
    port: 8080
    description: REST adapter for Microsoft Intune Graph API — Device Configurations. One Spectral-compliant resource per
      consumed operation, prefixed with /v1.
    resources:
    - path: /v1/devicemanagement/deviceconfigurations
      name: devicemanagement-deviceconfigurations
      description: REST surface for deviceManagement-deviceConfigurations.
      operations:
      - method: GET
        name: listdeviceconfigurations
        description: Microsoft Intune List device configurations
        call: microsoft-intune-device-configurations.listdeviceconfigurations
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/devicemanagement/deviceconfigurations/{deviceconfigurationid}
      name: devicemanagement-deviceconfigurations-deviceconfigurationid
      description: REST surface for deviceManagement-deviceConfigurations-deviceConfigurationId.
      operations:
      - method: GET
        name: getdeviceconfiguration
        description: Microsoft Intune Get device configuration
        call: microsoft-intune-device-configurations.getdeviceconfiguration
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updatedeviceconfiguration
        description: Microsoft Intune Update device configuration
        call: microsoft-intune-device-configurations.updatedeviceconfiguration
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletedeviceconfiguration
        description: Microsoft Intune Delete device configuration
        call: microsoft-intune-device-configurations.deletedeviceconfiguration
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/devicemanagement/deviceconfigurations/{deviceconfigurationid}/assign
      name: devicemanagement-deviceconfigurations-deviceconfigurationid-assign
      description: REST surface for deviceManagement-deviceConfigurations-deviceConfigurationId-assign.
      operations:
      - method: POST
        name: assigndeviceconfiguration
        description: Microsoft Intune Assign device configuration
        call: microsoft-intune-device-configurations.assigndeviceconfiguration
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: microsoft-intune-device-configurations-mcp
    port: 9090
    transport: http
    description: MCP adapter for Microsoft Intune Graph API — Device Configurations. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: microsoft-intune-list-device-configurations
      description: Microsoft Intune List device configurations
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: microsoft-intune-device-configurations.listdeviceconfigurations
      outputParameters:
      - type: object
        mapping: $.
    - name: microsoft-intune-get-device-configuration
      description: Microsoft Intune Get device configuration
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: microsoft-intune-device-configurations.getdeviceconfiguration
      outputParameters:
      - type: object
        mapping: $.
    - name: microsoft-intune-update-device-configuration
      description: Microsoft Intune Update device configuration
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: microsoft-intune-device-configurations.updatedeviceconfiguration
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: microsoft-intune-delete-device-configuration
      description: Microsoft Intune Delete device configuration
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: microsoft-intune-device-configurations.deletedeviceconfiguration
      outputParameters:
      - type: object
        mapping: $.
    - name: microsoft-intune-assign-device-configuration
      description: Microsoft Intune Assign device configuration
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: microsoft-intune-device-configurations.assigndeviceconfiguration
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.