The Vercel CLI now provides dedicated commands for managing DNS records, domains, and projects. This brings more of the functionality available through the Vercel dashboard and API to the terminal, where it can be used interactively, in scripts, or by agents.
Copy link to headingInspect and update DNS records
Retrieve the complete configuration for a DNS record or update it in place using its record ID.
vercel dns update
supports changes to the record name, type, value, TTL, MX priority, and comment. SRV records can also be updated using their priority, weight, port, and target fields.
Copy link to headingRenew domains bought on Vercel
Renew a domain on demand or control whether it renews automatically.
The renewal command displays the current renewal price and asks for confirmation before completing the purchase.
Copy link to headingControl project state and observability
Pause or resume a project and configure its observability features directly from the CLI. Web Analytics and Speed Insights could already be enabled from the CLI; they can now be disabled as well.
Copy link to headingAdd and remove project members
Add a project member with a specific role or remove an existing member.
All of the new commands support structured JSON output for scripts and agents. Billable or destructive actions require explicit confirmation.
Update to the latest version of the Vercel CLI to get started:
npm i -g vercel@latest
Learn more in the Vercel CLI documentation.
Facts Only
* The Vercel CLI offers dedicated commands for managing DNS records, domains, and projects.
* Commands exist to retrieve and update DNS records using record IDs.
* The `vercel dns update` command supports changes to record name, type, value, TTL, MX priority, and comment.
* SRV records can be updated via their priority, weight, port, and target fields.
* A command exists for renewing domains on demand or setting automatic renewal.
* The renewal command displays the current price and requires confirmation before purchase.
* The CLI allows pausing or resuming projects.
* Observability features like Web Analytics and Speed Insights can be enabled or disabled via the CLI.
* Commands support structured JSON output for scripting and agents.
