Netskope MCP Server

createPrivateAppTags

Input Schema

NameRequiredDescriptionDefault
idYesPrivate app ID
tagsYesArray of tags to create

Input Schema (JSON Schema)

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