cloudflare-dns-mcp_delete_dns_record
Remove a DNS record from a specified zone using its unique ID, enabling streamlined DNS management within the Cloudflare MCP Server.
Instructions
Delete a DNS record by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
record_id | Yes | ||
zone_name | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"record_id": {
"type": "string"
},
"zone_name": {
"type": "string"
}
},
"required": [
"zone_name",
"record_id"
],
"type": "object"
}