Netskope MCP Server

updateAlertConfig

Configure alert notifications for the Netskope MCP Server by specifying admin users, event types, and additional recipients to monitor infrastructure changes and upgrades.

Input Schema

NameRequiredDescriptionDefault
adminUsersYesArray of admin user emails to receive notifications
eventTypesYesArray of event types to monitor
selectedUsersYesAdditional users to receive notifications

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "adminUsers": { "description": "Array of admin user emails to receive notifications", "items": { "type": "string" }, "type": "array" }, "eventTypes": { "description": "Array of event types to monitor", "items": { "description": "Types of events that can trigger notifications", "enum": [ "UPGRADE_WILL_START", "UPGRADE_STARTED", "UPGRADE_SUCCEEDED", "UPGRADE_FAILED", "CONNECTION_FAILED" ], "type": "string" }, "type": "array" }, "selectedUsers": { "description": "Additional users to receive notifications", "type": "string" } }, "required": [ "adminUsers", "eventTypes", "selectedUsers" ], "type": "object" }
ID: fbsq8oidqv