Netskope MCP Server

replacePublisher

Update publisher details in Netskope MCP Server by modifying display names, tags, and local broker connections using unique identifiers.

Input Schema

NameRequiredDescriptionDefault
idYesUnique identifier of the publisher
lbrokerconnectNoOptional local broker connection
nameYesNew display name
tagsNoOptional publisher tags

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "id": { "description": "Unique identifier of the publisher", "type": "number" }, "lbrokerconnect": { "description": "Optional local broker connection", "type": "boolean" }, "name": { "description": "New display name", "type": "string" }, "tags": { "description": "Optional publisher tags", "items": { "additionalProperties": false, "description": "Tag with identifier", "properties": { "tag_id": { "description": "Unique identifier for the tag", "type": "number" }, "tag_name": { "description": "Display name of the tag", "type": "string" } }, "required": [ "tag_id", "tag_name" ], "type": "object" }, "type": "array" } }, "required": [ "id", "name" ], "type": "object" }
ID: fbsq8oidqv