McAfee (Trellix) · Capability

McAfee ePO API — System Groups

McAfee ePO API — System Groups. 2 operations. Lead operation: McAfee Find system tree groups. Self-contained Naftiko capability covering one Mcafee business surface.

Run with Naftiko McafeeSystem Groups

What You Can Do

GET
Epogroupfind — McAfee Find system tree groups
/v1/epogroup-find
POST
Epogroupmovesystem — McAfee Move a system to a different group
/v1/epogroup-movesystem

MCP Tools

mcafee-find-system-tree-groups

McAfee Find system tree groups

read-only idempotent
mcafee-move-system-different-group

McAfee Move a system to a different group

Capability Spec

epo-system-groups.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: McAfee ePO API — System Groups
  description: 'McAfee ePO API — System Groups. 2 operations. Lead operation: McAfee Find system tree groups. Self-contained
    Naftiko capability covering one Mcafee business surface.'
  tags:
  - Mcafee
  - System Groups
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    MCAFEE_API_KEY: MCAFEE_API_KEY
capability:
  consumes:
  - type: http
    namespace: epo-system-groups
    baseUri: https://{epo-server}:8443/remote
    description: McAfee ePO API — System Groups business capability. Self-contained, no shared references.
    resources:
    - name: epogroup.find
      path: /epogroup.find
      operations:
      - name: epogroupfind
        method: GET
        description: McAfee Find system tree groups
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: searchText
          in: query
          type: string
          description: Search string to match against group names
    - name: epogroup.moveSystem
      path: /epogroup.moveSystem
      operations:
      - name: epogroupmovesystem
        method: POST
        description: McAfee Move a system to a different group
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: names
          in: query
          type: string
          description: Comma-separated list of system names to move
          required: true
        - name: parentGroupId
          in: query
          type: integer
          description: ID of the target parent group
          required: true
    authentication:
      type: basic
      username: '{{env.MCAFEE_USER}}'
      password: '{{env.MCAFEE_PASS}}'
  exposes:
  - type: rest
    namespace: epo-system-groups-rest
    port: 8080
    description: REST adapter for McAfee ePO API — System Groups. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/epogroup-find
      name: epogroup-find
      description: REST surface for epogroup.find.
      operations:
      - method: GET
        name: epogroupfind
        description: McAfee Find system tree groups
        call: epo-system-groups.epogroupfind
        with:
          searchText: rest.searchText
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/epogroup-movesystem
      name: epogroup-movesystem
      description: REST surface for epogroup.moveSystem.
      operations:
      - method: POST
        name: epogroupmovesystem
        description: McAfee Move a system to a different group
        call: epo-system-groups.epogroupmovesystem
        with:
          names: rest.names
          parentGroupId: rest.parentGroupId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: epo-system-groups-mcp
    port: 9090
    transport: http
    description: MCP adapter for McAfee ePO API — System Groups. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: mcafee-find-system-tree-groups
      description: McAfee Find system tree groups
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: epo-system-groups.epogroupfind
      with:
        searchText: tools.searchText
      outputParameters:
      - type: object
        mapping: $.
    - name: mcafee-move-system-different-group
      description: McAfee Move a system to a different group
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: epo-system-groups.epogroupmovesystem
      with:
        names: tools.names
        parentGroupId: tools.parentGroupId
      outputParameters:
      - type: object
        mapping: $.