action vercel_delete_domain { label: "Remove a domain by name" description: "Delete a previously registered domain name from Vercel. Deleting a domain will automatically remove any associated aliases." provider: vercel method: DELETE path: "/v6/domains/{domain}" encoding: json input: { type: "object" properties: { domain: { type: "string" description: "The name of the domain." } teamId: { type: "string" } } required: ["domain"] additionalProperties: false } output: { type: "object" required: ["uid"] properties: { uid: { type: "string" } } } }