create_target_list
Create and manage custom target lists of domains, IPs, or CIDR ranges for network security and filtering on the MCP-compatible Firewalla MSP firewall server.
Instructions
Create a new target list
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | Content category (optional) | |
name | Yes | Target list name (required, max 24 chars) | |
notes | No | Additional description (optional) | |
owner | Yes | Owner: "global" or box GID (required) | |
targets | Yes | Array of domains, IPs, or CIDR ranges (required) |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "Content category (optional)",
"enum": [
"ad",
"edu",
"games",
"gamble",
"intel",
"p2p",
"porn",
"private",
"social",
"shopping",
"video",
"vpn"
],
"type": "string"
},
"name": {
"description": "Target list name (required, max 24 chars)",
"maxLength": 24,
"type": "string"
},
"notes": {
"description": "Additional description (optional)",
"type": "string"
},
"owner": {
"description": "Owner: \"global\" or box GID (required)",
"type": "string"
},
"targets": {
"description": "Array of domains, IPs, or CIDR ranges (required)",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"name",
"owner",
"targets"
],
"type": "object"
}