McAfee (Trellix) · Capability

McAfee MVISION API — Real-Time Search

McAfee MVISION API — Real-Time Search. 2 operations. Lead operation: McAfee Create a real-time search. Self-contained Naftiko capability covering one Mcafee business surface.

Run with Naftiko McafeeReal-Time Search

What You Can Do

POST
Createrealtimesearch — McAfee Create a real-time search
/v1/edr/v2/real-time-search
GET
Getrealtimesearchresults — McAfee Get real-time search results
/v1/edr/v2/real-time-search/{searchid}/results

MCP Tools

mcafee-create-real-time-search

McAfee Create a real-time search

read-only
mcafee-get-real-time-search

McAfee Get real-time search results

read-only idempotent

Capability Spec

mvision-real-time-search.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: McAfee MVISION API — Real-Time Search
  description: 'McAfee MVISION API — Real-Time Search. 2 operations. Lead operation: McAfee Create a real-time search. Self-contained
    Naftiko capability covering one Mcafee business surface.'
  tags:
  - Mcafee
  - Real-Time Search
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    MCAFEE_API_KEY: MCAFEE_API_KEY
capability:
  consumes:
  - type: http
    namespace: mvision-real-time-search
    baseUri: https://api.mvision.mcafee.com
    description: McAfee MVISION API — Real-Time Search business capability. Self-contained, no shared references.
    resources:
    - name: edr-v2-real-time-search
      path: /edr/v2/real-time-search
      operations:
      - name: createrealtimesearch
        method: POST
        description: McAfee Create a real-time search
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: edr-v2-real-time-search-searchId-results
      path: /edr/v2/real-time-search/{searchId}/results
      operations:
      - name: getrealtimesearchresults
        method: GET
        description: McAfee Get real-time search results
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: searchId
          in: path
          type: string
          description: Real-time search identifier
          required: true
    authentication:
      type: bearer
      token: '{{env.MCAFEE_API_KEY}}'
  exposes:
  - type: rest
    namespace: mvision-real-time-search-rest
    port: 8080
    description: REST adapter for McAfee MVISION API — Real-Time Search. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/edr/v2/real-time-search
      name: edr-v2-real-time-search
      description: REST surface for edr-v2-real-time-search.
      operations:
      - method: POST
        name: createrealtimesearch
        description: McAfee Create a real-time search
        call: mvision-real-time-search.createrealtimesearch
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/edr/v2/real-time-search/{searchid}/results
      name: edr-v2-real-time-search-searchid-results
      description: REST surface for edr-v2-real-time-search-searchId-results.
      operations:
      - method: GET
        name: getrealtimesearchresults
        description: McAfee Get real-time search results
        call: mvision-real-time-search.getrealtimesearchresults
        with:
          searchId: rest.searchId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: mvision-real-time-search-mcp
    port: 9090
    transport: http
    description: MCP adapter for McAfee MVISION API — Real-Time Search. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: mcafee-create-real-time-search
      description: McAfee Create a real-time search
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: mvision-real-time-search.createrealtimesearch
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: mcafee-get-real-time-search
      description: McAfee Get real-time search results
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: mvision-real-time-search.getrealtimesearchresults
      with:
        searchId: tools.searchId
      outputParameters:
      - type: object
        mapping: $.