delete_dns
Remove a specific DNS record from a domain by providing the domain UUID and record ID. This tool simplifies DNS management on Sherlock Domains MCP.
Instructions
Delete a DNS record for a domain.
domain_id: Domain UUID (e.g., 'd1234567-89ab-cdef-0123-456789abcdef')
record_id: DNS record ID to delete
Input Schema
Name | Required | Description | Default |
---|---|---|---|
domain_id | Yes | ||
record_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"domain_id": {
"title": "Domain Id",
"type": "string"
},
"record_id": {
"title": "Record Id",
"type": "string"
}
},
"required": [
"domain_id",
"record_id"
],
"title": "delete_dnsArguments",
"type": "object"
}