getDeployment
Retrieve deployment details by ID or URL using the Vercel MCP server, including optional git repository info and team-specific data for precise deployment management.
Instructions
Gets a deployment by ID or URL
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deploymentId | Yes | The ID or URL of the deployment | |
slug | No | Slug | |
teamId | No | Team ID | |
withGitRepoInfo | No | Include git repository info |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"deploymentId": {
"description": "The ID or URL of the deployment",
"type": "string"
},
"slug": {
"description": "Slug",
"type": "string"
},
"teamId": {
"description": "Team ID",
"type": "string"
},
"withGitRepoInfo": {
"description": "Include git repository info",
"type": "string"
}
},
"required": [
"deploymentId"
],
"type": "object"
}