WatchGuard · Capability

WatchGuard Endpoint Security Management API — Configurations

WatchGuard Endpoint Security Management API — Configurations. 2 operations. Lead operation: Get Installer. Self-contained Naftiko capability covering one Watchguard business surface.

Run with Naftiko WatchguardConfigurations

What You Can Do

GET
Getinstaller — Get Installer
/v1/accounts/{accountid}/installers
GET
Getmanagedconfigurations — Get Managed Configurations
/v1/accounts/{accountid}/managedconfigurations/{type}

MCP Tools

get-installer

Get Installer

read-only idempotent
get-managed-configurations

Get Managed Configurations

read-only idempotent

Capability Spec

endpoint-security-configurations.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: WatchGuard Endpoint Security Management API — Configurations
  description: 'WatchGuard Endpoint Security Management API — Configurations. 2 operations. Lead operation: Get Installer.
    Self-contained Naftiko capability covering one Watchguard business surface.'
  tags:
  - Watchguard
  - Configurations
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    WATCHGUARD_API_KEY: WATCHGUARD_API_KEY
capability:
  consumes:
  - type: http
    namespace: endpoint-security-configurations
    baseUri: https://api.usa.cloud.watchguard.com/rest/endpoint-security/management/api/v1
    description: WatchGuard Endpoint Security Management API — Configurations business capability. Self-contained, no shared
      references.
    resources:
    - name: accounts-accountId-installers
      path: /accounts/{accountId}/installers
      operations:
      - name: getinstaller
        method: GET
        description: Get Installer
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: platformId
          in: query
          type: string
          description: Target platform identifier.
          required: true
        - name: managedConfigurationId
          in: query
          type: string
          description: Configuration ID to associate with the installer.
          required: true
        - name: useActiveDirectory
          in: query
          type: boolean
          description: Whether to use Active Directory for deployment.
          required: true
    - name: accounts-accountId-managedconfigurations-type
      path: /accounts/{accountId}/managedconfigurations/{type}
      operations:
      - name: getmanagedconfigurations
        method: GET
        description: Get Managed Configurations
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: type
          in: path
          type: integer
          description: Configuration type (1-12).
          required: true
    authentication:
      type: bearer
      token: '{{env.WATCHGUARD_API_KEY}}'
  exposes:
  - type: rest
    namespace: endpoint-security-configurations-rest
    port: 8080
    description: REST adapter for WatchGuard Endpoint Security Management API — Configurations. One Spectral-compliant resource
      per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/accounts/{accountid}/installers
      name: accounts-accountid-installers
      description: REST surface for accounts-accountId-installers.
      operations:
      - method: GET
        name: getinstaller
        description: Get Installer
        call: endpoint-security-configurations.getinstaller
        with:
          platformId: rest.platformId
          managedConfigurationId: rest.managedConfigurationId
          useActiveDirectory: rest.useActiveDirectory
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/accounts/{accountid}/managedconfigurations/{type}
      name: accounts-accountid-managedconfigurations-type
      description: REST surface for accounts-accountId-managedconfigurations-type.
      operations:
      - method: GET
        name: getmanagedconfigurations
        description: Get Managed Configurations
        call: endpoint-security-configurations.getmanagedconfigurations
        with:
          type: rest.type
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: endpoint-security-configurations-mcp
    port: 9090
    transport: http
    description: MCP adapter for WatchGuard Endpoint Security Management API — Configurations. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: get-installer
      description: Get Installer
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: endpoint-security-configurations.getinstaller
      with:
        platformId: tools.platformId
        managedConfigurationId: tools.managedConfigurationId
        useActiveDirectory: tools.useActiveDirectory
      outputParameters:
      - type: object
        mapping: $.
    - name: get-managed-configurations
      description: Get Managed Configurations
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: endpoint-security-configurations.getmanagedconfigurations
      with:
        type: tools.type
      outputParameters:
      - type: object
        mapping: $.