add_domain_dns
ActiveTool of BorealHost
Add a DNS record to a domain. Requires: API key with write scope. Args: domain_name: Full domain name (e.g. "example.com") record_type: "A", "AAAA", "CNAME", "MX", "TXT", or "SRV" value: Record value (e.g. "1.2.3.4" for A, "mail.example.com" for MX) subdomain: Subdomain part (e.g. "www", "mail"). Empty for apex domain. ttl: Time to live in seconds (default: 3600) priority: MX priority (required for MX records) Returns: {"success": true, "record": {"id": "...", "type": "A", "subdomain": "www", "value": "1.2.3.4", "ttl": 3600}} Errors: VALIDATION_ERROR: Missing value, invalid record type NOT_FOUND: Domain not found
Parameters schema
{
"type": "object",
"title": "add_domain_dnsArguments",
"required": [
"domain_name",
"record_type",
"value"
],
"properties": {
"ttl": {
"type": "integer",
"title": "Ttl",
"default": 3600
},
"value": {
"type": "string",
"title": "Value"
},
"priority": {
"type": "integer",
"title": "Priority",
"default": null
},
"subdomain": {
"type": "string",
"title": "Subdomain",
"default": ""
},
"domain_name": {
"type": "string",
"title": "Domain Name"
},
"record_type": {
"type": "string",
"title": "Record Type"
}
}
}Parent server
BorealHost
https://github.com/alainsvrd/borealhost-mcp
1/7 registries