cloudflare-dns-mcp_create_security_rule
Create custom firewall security rules for zones on Cloudflare by defining rule name, expression, action, and priority. Configure and manage zone-specific security settings efficiently.
Instructions
Create a custom firewall security rule for a zone
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | ||
expression | Yes | ||
paused | No | ||
priority | No | ||
rule_name | Yes | ||
zone_name | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"action": {
"type": "string"
},
"expression": {
"type": "string"
},
"paused": {
"default": false,
"type": "boolean"
},
"priority": {
"type": "number"
},
"rule_name": {
"type": "string"
},
"zone_name": {
"type": "string"
}
},
"required": [
"zone_name",
"rule_name",
"expression",
"action"
],
"type": "object"
}