action vercel_create_record { label: "Create a DNS record" description: "Creates a DNS record for a domain." provider: vercel method: POST path: "/v2/domains/{domain}/records" encoding: json input: { type: "object" properties: { domain: { type: "string" description: "The domain used to create the DNS record." } teamId: { type: "string" } type: { type: "string" description: "The type of record, it could be one of the valid DNS records." enum: ["A", "AAAA", "ALIAS", "CAA", "CNAME", "MX", "SRV", "TXT", "NS"] } } required: ["domain", "type"] additionalProperties: false } output: { type: "object" } }