Netskope MCP Server

updateAlertConfig

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" }