Illumio MCP Server

create-iplist

Create a new IP List in the PCE

Input Schema

NameRequiredDescriptionDefault
descriptionNoDescription of the IP List
fqdnNoFully Qualified Domain Name (optional)
ip_rangesYesList of IP ranges to include
nameYesName of the IP List

Input Schema (JSON Schema)

{ "properties": { "description": { "description": "Description of the IP List", "type": "string" }, "fqdn": { "description": "Fully Qualified Domain Name (optional)", "type": "string" }, "ip_ranges": { "description": "List of IP ranges to include", "items": { "properties": { "description": { "description": "Description of this IP range (optional)", "type": "string" }, "exclusion": { "default": false, "description": "Whether this is an exclusion range", "type": "boolean" }, "from_ip": { "description": "Starting IP address (IPv4 or IPv6)", "type": "string" }, "to_ip": { "description": "Ending IP address (optional, for ranges)", "type": "string" } }, "required": [ "from_ip" ], "type": "object" }, "type": "array" }, "name": { "description": "Name of the IP List", "type": "string" } }, "required": [ "name", "ip_ranges" ], "type": "object" }