McAfee (Trellix) File Operations API

Import and export configuration files

Operations 2

GET /file/export McAfee Export configuration #
POST /file/import McAfee Import configuration #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/mcafee-file-operations-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

mcafee-file-operations-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: McAfee Web Gateway File Operations API
  description: McAfee Web Gateway (MWG) REST API for managing web security policies, rule sets, URL filtering lists, SSL inspection settings, and monitoring proxy traffic and statistics.
  version: '10.0'
  contact:
    name: McAfee Support
    url: https://www.mcafee.com/enterprise/en-us/support.html
  termsOfService: https://www.mcafee.com/enterprise/en-us/about/legal/terms-of-use.html
servers:
- url: https://{mwg-server}:4712/Konfigurator/REST
  description: McAfee Web Gateway Administration
  variables:
    mwg-server:
      default: your-mwg-server
      description: Hostname or IP of the MWG appliance
security:
- cookieAuth: []
tags:
- name: File Operations
  description: Import and export configuration files
paths:
  /file/export:
    get:
      operationId: exportConfiguration
      summary: McAfee Export configuration
      description: Export the complete appliance configuration as a backup file.
      tags:
      - File Operations
      responses:
        '200':
          description: Configuration backup file
          content:
            application/octet-stream:
              schema:
                type: string
                format: binary
        '401':
          description: Not authenticated
  /file/import:
    post:
      operationId: importConfiguration
      summary: McAfee Import configuration
      description: Import a previously exported configuration backup to restore settings.
      tags:
      - File Operations
      requestBody:
        required: true
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                file:
                  type: string
                  format: binary
                  description: Configuration backup file
      responses:
        '200':
          description: Configuration imported successfully
        '400':
          description: Invalid configuration file
        '401':
          description: Not authenticated
components:
  securitySchemes:
    cookieAuth:
      type: apiKey
      in: cookie
      name: JSESSIONID
      description: Session cookie obtained from the login endpoint
externalDocs:
  description: McAfee Web Gateway Product Guide
  url: https://docs.mcafee.com/bundle/web-gateway-product-guide