McAfee (Trellix) · Capability

McAfee MVISION API — Investigations

McAfee MVISION API — Investigations. 3 operations. Lead operation: McAfee List investigations. Self-contained Naftiko capability covering one Mcafee business surface.

Run with Naftiko McafeeInvestigations

What You Can Do

GET
Listinvestigations — McAfee List investigations
/v1/edr/v2/investigations
POST
Createinvestigation — McAfee Create an investigation
/v1/edr/v2/investigations
POST
Createremediationaction — McAfee Create a remediation action
/v1/edr/v2/remediation/actions

MCP Tools

mcafee-list-investigations

McAfee List investigations

read-only idempotent
mcafee-create-investigation

McAfee Create an investigation

mcafee-create-remediation-action

McAfee Create a remediation action

Capability Spec

mvision-investigations.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: McAfee MVISION API — Investigations
  description: 'McAfee MVISION API — Investigations. 3 operations. Lead operation: McAfee List investigations. Self-contained
    Naftiko capability covering one Mcafee business surface.'
  tags:
  - Mcafee
  - Investigations
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    MCAFEE_API_KEY: MCAFEE_API_KEY
capability:
  consumes:
  - type: http
    namespace: mvision-investigations
    baseUri: https://api.mvision.mcafee.com
    description: McAfee MVISION API — Investigations business capability. Self-contained, no shared references.
    resources:
    - name: edr-v2-investigations
      path: /edr/v2/investigations
      operations:
      - name: listinvestigations
        method: GET
        description: McAfee List investigations
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: filter[status]
          in: query
          type: string
          description: Filter by investigation status
        - name: filter[priority]
          in: query
          type: string
          description: Filter by investigation priority
      - name: createinvestigation
        method: POST
        description: McAfee Create an investigation
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: edr-v2-remediation-actions
      path: /edr/v2/remediation/actions
      operations:
      - name: createremediationaction
        method: POST
        description: McAfee Create a remediation action
        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.MCAFEE_API_KEY}}'
  exposes:
  - type: rest
    namespace: mvision-investigations-rest
    port: 8080
    description: REST adapter for McAfee MVISION API — Investigations. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/edr/v2/investigations
      name: edr-v2-investigations
      description: REST surface for edr-v2-investigations.
      operations:
      - method: GET
        name: listinvestigations
        description: McAfee List investigations
        call: mvision-investigations.listinvestigations
        with:
          filter[status]: rest.filter[status]
          filter[priority]: rest.filter[priority]
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createinvestigation
        description: McAfee Create an investigation
        call: mvision-investigations.createinvestigation
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/edr/v2/remediation/actions
      name: edr-v2-remediation-actions
      description: REST surface for edr-v2-remediation-actions.
      operations:
      - method: POST
        name: createremediationaction
        description: McAfee Create a remediation action
        call: mvision-investigations.createremediationaction
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: mvision-investigations-mcp
    port: 9090
    transport: http
    description: MCP adapter for McAfee MVISION API — Investigations. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: mcafee-list-investigations
      description: McAfee List investigations
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: mvision-investigations.listinvestigations
      with:
        filter[status]: tools.filter[status]
        filter[priority]: tools.filter[priority]
      outputParameters:
      - type: object
        mapping: $.
    - name: mcafee-create-investigation
      description: McAfee Create an investigation
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: mvision-investigations.createinvestigation
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: mcafee-create-remediation-action
      description: McAfee Create a remediation action
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: mvision-investigations.createremediationaction
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.