Trellix Web Gateway · Capability

Trellix Web Gateway Policy API — SSL Scanning

Trellix Web Gateway Policy API — SSL Scanning. 4 operations. Lead operation: List SSL certificates. Self-contained Naftiko capability covering one Trellix Web Gateway business surface.

Run with Naftiko Trellix Web GatewaySSL Scanning

What You Can Do

GET
Listsslcertificates — List SSL certificates
/v1/ssl/certificates
POST
Uploadsslcertificate — Upload an SSL certificate
/v1/ssl/certificates
GET
Getsslsettings — Get SSL scanning settings
/v1/ssl/settings
PUT
Updatesslsettings — Update SSL scanning settings
/v1/ssl/settings

MCP Tools

list-ssl-certificates

List SSL certificates

read-only idempotent
upload-ssl-certificate

Upload an SSL certificate

get-ssl-scanning-settings

Get SSL scanning settings

read-only idempotent
update-ssl-scanning-settings

Update SSL scanning settings

idempotent

Capability Spec

policy-ssl-scanning.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Trellix Web Gateway Policy API — SSL Scanning
  description: 'Trellix Web Gateway Policy API — SSL Scanning. 4 operations. Lead operation: List SSL certificates. Self-contained
    Naftiko capability covering one Trellix Web Gateway business surface.'
  tags:
  - Trellix Web Gateway
  - SSL Scanning
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TRELLIX_WEB_GATEWAY_API_KEY: TRELLIX_WEB_GATEWAY_API_KEY
capability:
  consumes:
  - type: http
    namespace: policy-ssl-scanning
    baseUri: https://{mwg-server}:{port}/Konfigurator/REST/policy
    description: Trellix Web Gateway Policy API — SSL Scanning business capability. Self-contained, no shared references.
    resources:
    - name: ssl-certificates
      path: /ssl/certificates
      operations:
      - name: listsslcertificates
        method: GET
        description: List SSL certificates
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: uploadsslcertificate
        method: POST
        description: Upload an SSL certificate
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: ssl-settings
      path: /ssl/settings
      operations:
      - name: getsslsettings
        method: GET
        description: Get SSL scanning settings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updatesslsettings
        method: PUT
        description: Update SSL scanning settings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: apikey
      key: JSESSIONID
      value: '{{env.TRELLIX_WEB_GATEWAY_API_KEY}}'
      placement: cookie
  exposes:
  - type: rest
    namespace: policy-ssl-scanning-rest
    port: 8080
    description: REST adapter for Trellix Web Gateway Policy API — SSL Scanning. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/ssl/certificates
      name: ssl-certificates
      description: REST surface for ssl-certificates.
      operations:
      - method: GET
        name: listsslcertificates
        description: List SSL certificates
        call: policy-ssl-scanning.listsslcertificates
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: uploadsslcertificate
        description: Upload an SSL certificate
        call: policy-ssl-scanning.uploadsslcertificate
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/ssl/settings
      name: ssl-settings
      description: REST surface for ssl-settings.
      operations:
      - method: GET
        name: getsslsettings
        description: Get SSL scanning settings
        call: policy-ssl-scanning.getsslsettings
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatesslsettings
        description: Update SSL scanning settings
        call: policy-ssl-scanning.updatesslsettings
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: policy-ssl-scanning-mcp
    port: 9090
    transport: http
    description: MCP adapter for Trellix Web Gateway Policy API — SSL Scanning. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: list-ssl-certificates
      description: List SSL certificates
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: policy-ssl-scanning.listsslcertificates
      outputParameters:
      - type: object
        mapping: $.
    - name: upload-ssl-certificate
      description: Upload an SSL certificate
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: policy-ssl-scanning.uploadsslcertificate
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-ssl-scanning-settings
      description: Get SSL scanning settings
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: policy-ssl-scanning.getsslsettings
      outputParameters:
      - type: object
        mapping: $.
    - name: update-ssl-scanning-settings
      description: Update SSL scanning settings
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: policy-ssl-scanning.updatesslsettings
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.