getDeploymentFileContents
Retrieve specific file contents from a deployment by providing deployment and file IDs. Utilizes the Vercel MCP server for streamlined API interactions.
Instructions
Gets deployment file contents
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deploymentId | Yes | The ID of the deployment | |
fileId | Yes | The ID of the file | |
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"
},
"fileId": {
"description": "The ID of the file",
"type": "string"
},
"slug": {
"description": "Slug",
"type": "string"
},
"teamId": {
"description": "Team ID",
"type": "string"
}
},
"required": [
"deploymentId",
"fileId"
],
"type": "object"
}