Netskope MCP Server

updatePrivateAppTags

Update tags for specific private applications in Netskope MCP Server by providing an array of app IDs and associated tags to ensure accurate classification and management.

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" }
ID: fbsq8oidqv