cloudflare-dns-mcp_purge_cache
Purge Cloudflare cache for a specified zone by selecting purge type (everything, files, tags, hosts) and targeting specific resources. Streamlines cache management for improved performance.
Instructions
Purge Cloudflare cache for a zone
Input Schema
Name | Required | Description | Default |
---|---|---|---|
purge_type | No | everything | |
targets | No | ||
zone_name | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"purge_type": {
"default": "everything",
"enum": [
"everything",
"files",
"tags",
"hosts"
],
"type": "string"
},
"targets": {
"items": {
"type": "string"
},
"type": "array"
},
"zone_name": {
"type": "string"
}
},
"required": [
"zone_name"
],
"type": "object"
}