Netskope MCP Server

updatePrivateAppTags

Input Schema

NameRequiredDescriptionDefault
idsYesArray of private app IDs
tagsYesArray of tags to update

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "ids": { "description": "Array of private app IDs", "items": { "type": "string" }, "type": "array" }, "tags": { "description": "Array of tags to update", "items": { "additionalProperties": false, "properties": { "tag_name": { "description": "Name of the tag", "type": "string" } }, "required": [ "tag_name" ], "type": "object" }, "type": "array" } }, "required": [ "ids", "tags" ], "type": "object" }