deleteDeployment
Remove a deployment from Vercel by specifying its ID. This tool helps manage and clean up deployments directly through the Vercel MCP server.
Instructions
Deletes a deployment
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deploymentId | Yes | The ID of the deployment to delete | |
slug | No | Slug | |
teamId | No | Team ID | |
url | No | The 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"
}