action vercel_get_deployment { label: "Get a deployment by ID or URL" description: "Retrieves information for a deployment either by supplying its ID (`id` property) or Hostname (`url` property). Additional details will be included when the authenticated user is an owner of the deployment." provider: vercel method: GET path: "/v13/deployments/{idOrUrl}" encoding: json input: { type: "object" properties: { idOrUrl: { type: "string" description: "The unique identifier or hostname of the deployment." } teamId: { type: "string" } withGitRepoInfo: { type: "string" description: "Whether to add in gitRepo information." } } required: ["idOrUrl"] additionalProperties: false } output: { type: "object" } }