Microsoft Endpoint Configuration Management Configuration Manager REST API (AdminService) — Applications

Microsoft Endpoint Configuration Management Configuration Manager REST API (AdminService) — Applications. 3 operations. Lead operation: Microsoft Endpoint Configuration Management List applications. Self-contained Naftiko capability covering one Microsoft Endpoint Configuration Management business surface.

Run with Naftiko Microsoft Endpoint Configuration ManagementApplications

What You Can Do

GET
Listapplications — Microsoft Endpoint Configuration Management List applications
/v1/wmi/sms-application
POST
Createapplication — Microsoft Endpoint Configuration Management Create an application
/v1/wmi/sms-application
GET
Getapplication — Microsoft Endpoint Configuration Management Get an application
/v1/wmi/sms-application-applicationid

MCP Tools

microsoft-endpoint-configuration-management-list

Microsoft Endpoint Configuration Management List applications

read-only idempotent
microsoft-endpoint-configuration-management-create

Microsoft Endpoint Configuration Management Create an application

microsoft-endpoint-configuration-management-get

Microsoft Endpoint Configuration Management Get an application

read-only idempotent

Capability Spec

configmgr-rest-applications.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Microsoft Endpoint Configuration Management Configuration Manager REST API (AdminService) — Applications
  description: 'Microsoft Endpoint Configuration Management Configuration Manager REST API (AdminService) — Applications.
    3 operations. Lead operation: Microsoft Endpoint Configuration Management List applications. Self-contained Naftiko capability
    covering one Microsoft Endpoint Configuration Management business surface.'
  tags:
  - Microsoft Endpoint Configuration Management
  - Applications
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    MICROSOFT_ENDPOINT_CONFIGURATION_MANAGEMENT_API_KEY: MICROSOFT_ENDPOINT_CONFIGURATION_MANAGEMENT_API_KEY
capability:
  consumes:
  - type: http
    namespace: configmgr-rest-applications
    baseUri: https://{siteserver}/AdminService
    description: Microsoft Endpoint Configuration Management Configuration Manager REST API (AdminService) — Applications
      business capability. Self-contained, no shared references.
    resources:
    - name: wmi-SMS_Application
      path: /wmi/SMS_Application
      operations:
      - name: listapplications
        method: GET
        description: Microsoft Endpoint Configuration Management List applications
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createapplication
        method: POST
        description: Microsoft Endpoint Configuration Management Create an application
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: wmi-SMS_Application('{applicationId}')
      path: /wmi/SMS_Application('{applicationId}')
      operations:
      - name: getapplication
        method: GET
        description: Microsoft Endpoint Configuration Management Get an application
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: applicationId
          in: path
          type: string
          required: true
    authentication:
      type: bearer
      token: '{{env.MICROSOFT_ENDPOINT_CONFIGURATION_MANAGEMENT_API_KEY}}'
  exposes:
  - type: rest
    namespace: configmgr-rest-applications-rest
    port: 8080
    description: REST adapter for Microsoft Endpoint Configuration Management Configuration Manager REST API (AdminService)
      — Applications. One Spectral-compliant resource per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/wmi/sms-application
      name: wmi-sms-application
      description: REST surface for wmi-SMS_Application.
      operations:
      - method: GET
        name: listapplications
        description: Microsoft Endpoint Configuration Management List applications
        call: configmgr-rest-applications.listapplications
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createapplication
        description: Microsoft Endpoint Configuration Management Create an application
        call: configmgr-rest-applications.createapplication
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/wmi/sms-application-applicationid
      name: wmi-sms-application-applicationid
      description: REST surface for wmi-SMS_Application('{applicationId}').
      operations:
      - method: GET
        name: getapplication
        description: Microsoft Endpoint Configuration Management Get an application
        call: configmgr-rest-applications.getapplication
        with:
          applicationId: rest.applicationId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: configmgr-rest-applications-mcp
    port: 9090
    transport: http
    description: MCP adapter for Microsoft Endpoint Configuration Management Configuration Manager REST API (AdminService)
      — Applications. One tool per consumed operation, routed inline through this capability's consumes block.
    tools:
    - name: microsoft-endpoint-configuration-management-list
      description: Microsoft Endpoint Configuration Management List applications
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: configmgr-rest-applications.listapplications
      outputParameters:
      - type: object
        mapping: $.
    - name: microsoft-endpoint-configuration-management-create
      description: Microsoft Endpoint Configuration Management Create an application
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: configmgr-rest-applications.createapplication
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: microsoft-endpoint-configuration-management-get
      description: Microsoft Endpoint Configuration Management Get an application
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: configmgr-rest-applications.getapplication
      with:
        applicationId: tools.applicationId
      outputParameters:
      - type: object
        mapping: $.