Vercel MCP

deleteDeployment

Deletes a deployment

Input Schema

NameRequiredDescriptionDefault
deploymentIdYesThe ID of the deployment to delete
slugNoSlug
teamIdNoTeam ID
urlNoThe URL of the deployment

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "deploymentId": { "description": "The ID of the deployment to delete", "type": "string" }, "slug": { "description": "Slug", "type": "string" }, "teamId": { "description": "Team ID", "type": "string" }, "url": { "description": "The URL of the deployment", "type": "string" } }, "required": [ "deploymentId" ], "type": "object" }