Vercel MCP

getDeploymentEvents

Gets deployment events by deployment ID and build ID

Input Schema

NameRequiredDescriptionDefault
buildsNoBuilds parameter
delimiterNoDelimiter for events
deploymentIdYesThe ID or URL of the deployment
directionNoDirection of events retrieval
followNoFollow parameter for events
limitNoLimit on number of events to return
nameNoFilter events by name
sinceNoTimestamp to get events from
slugNoSlug
statusCodeNoFilter events by status code
teamIdNoTeam ID
untilNoTimestamp to get events until

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "builds": { "description": "Builds parameter", "type": "number" }, "delimiter": { "description": "Delimiter for events", "type": "number" }, "deploymentId": { "description": "The ID or URL of the deployment", "type": "string" }, "direction": { "description": "Direction of events retrieval", "enum": [ "forward", "backward" ], "type": "string" }, "follow": { "description": "Follow parameter for events", "type": "number" }, "limit": { "description": "Limit on number of events to return", "type": "number" }, "name": { "description": "Filter events by name", "type": "string" }, "since": { "description": "Timestamp to get events from", "type": "number" }, "slug": { "description": "Slug", "type": "string" }, "statusCode": { "description": "Filter events by status code", "type": "string" }, "teamId": { "description": "Team ID", "type": "string" }, "until": { "description": "Timestamp to get events until", "type": "number" } }, "required": [ "deploymentId" ], "type": "object" }