listDeploymentFiles
Retrieve all files associated with a specific deployment using the deployment ID, enabling efficient management and organization of deployment resources on Vercel MCP.
Instructions
Lists deployment files
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deploymentId | Yes | The ID of the deployment | |
slug | No | Slug | |
teamId | No | Team ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"deploymentId": {
"description": "The ID of the deployment",
"type": "string"
},
"slug": {
"description": "Slug",
"type": "string"
},
"teamId": {
"description": "Team ID",
"type": "string"
}
},
"required": [
"deploymentId"
],
"type": "object"
}