cloudflare-dns-mcp_create_dns_record
Automate DNS record creation in a specified Cloudflare zone by defining parameters like record type, name, content, TTL, and optional proxy settings.
Instructions
Create a new DNS record in a given zone
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | ||
name | Yes | ||
port | No | ||
priority | No | ||
proxied | No | ||
target | No | ||
ttl | No | ||
type | Yes | ||
weight | No | ||
zone_name | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"content": {
"type": "string"
},
"name": {
"type": "string"
},
"port": {
"type": "number"
},
"priority": {
"type": "number"
},
"proxied": {
"default": false,
"type": "boolean"
},
"target": {
"type": "string"
},
"ttl": {
"default": 1,
"type": "number"
},
"type": {
"type": "string"
},
"weight": {
"type": "number"
},
"zone_name": {
"type": "string"
}
},
"required": [
"zone_name",
"type",
"name",
"content"
],
"type": "object"
}