Vercel

Manage Vercel deployments, projects, and infrastructure

Vercel describes itself as the AI Cloud: a platform that provides developer tools and cloud infrastructure to build, scale, and secure faster, more personalized web experiences. It is widely used to build and ship modern web apps and agentic workloads, with built-in support for Git-based workflows, preview deployments, and production delivery.

With Vercel, you can:

  • Automate deployments: Deploy from Git and manage preview and production releases with minimal operational overhead
  • Manage projects and teams: Organize projects, team access, and settings across multiple environments
  • Control infrastructure settings: Configure domains, DNS, aliases, environment variables, and edge settings in one place
  • Monitor and troubleshoot: Track deployment status, inspect logs, and debug build or runtime issues

In Sim, the Vercel integration lets your agents programmatically manage deployments, projects, domains, DNS records, aliases, environment variables, edge configs, and teams directly from workflows. You can automate deployment operations, react to status changes, and run infrastructure tasks as part of reliable, end-to-end delivery workflows.

Usage Instructions

Integrate with Vercel to manage deployments, projects, domains, DNS records, environment variables, aliases, edge configs, teams, and more.

Tools

vercel_list_deployments

List deployments for a Vercel project or team

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
projectIdstringNoFilter deployments by project ID or name
targetstringNoFilter by environment: production or staging
statestringNoFilter by state: BUILDING, ERROR, INITIALIZING, QUEUED, READY, CANCELED
appstringNoFilter by deployment name
sincenumberNoGet deployments created after this JavaScript timestamp
untilnumberNoGet deployments created before this JavaScript timestamp
limitnumberNoMaximum number of deployments to return per request
teamIdstringNoTeam ID to scope the request

Output

ParameterTypeDescription
deploymentsarrayList of deployments
uidstringUnique deployment identifier
namestringDeployment name
urlstringDeployment URL
statestringDeployment state: BUILDING, ERROR, INITIALIZING, QUEUED, READY, CANCELED, DELETED
targetstringTarget environment
creatednumberCreation timestamp
projectIdstringAssociated project ID
sourcestringDeployment source: api-trigger-git-deploy, cli, clone/repo, git, import, import/repo, redeploy, v0-web
inspectorUrlstringVercel inspector URL
creatorobjectCreator information
uidstringCreator user ID
emailstringCreator email
usernamestringCreator username
metaobjectGit provider metadata (key-value strings)
countnumberNumber of deployments returned
hasMorebooleanWhether more deployments are available

vercel_get_deployment

Get details of a specific Vercel deployment

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
deploymentIdstringYesThe unique deployment identifier or hostname
withGitRepoInfostringNoWhether to add in gitRepo information (true/false)
teamIdstringNoTeam ID to scope the request

Output

ParameterTypeDescription
idstringDeployment ID
namestringDeployment name
urlstringUnique deployment URL
readyStatestringDeployment ready state: QUEUED, BUILDING, ERROR, INITIALIZING, READY, CANCELED
statusstringDeployment status
targetstringTarget environment
createdAtnumberCreation timestamp in milliseconds
buildingAtnumberBuild start timestamp
readynumberReady timestamp
sourcestringDeployment source: cli, git, redeploy, import, v0-web, etc.
aliasarrayAssigned aliases
regionsarrayDeployment regions
inspectorUrlstringVercel inspector URL
projectIdstringAssociated project ID
creatorobjectCreator information
uidstringCreator user ID
usernamestringCreator username
projectobjectAssociated project
idstringProject ID
namestringProject name
frameworkstringProject framework
metaobjectDeployment metadata (key-value strings)
githubCommitShastringGitHub commit SHA
githubCommitMessagestringGitHub commit message
githubCommitRefstringGitHub branch/ref
githubRepostringGitHub repository
githubOrgstringGitHub organization
githubCommitAuthorNamestringCommit author name
gitSourceobjectGit source information
typestringGit provider type (e.g., github, gitlab, bitbucket)
refstringGit ref (branch or tag)
shastringGit commit SHA
repoIdstringRepository ID

vercel_create_deployment

Create a new deployment or redeploy an existing one

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
namestringYesProject name for the deployment
projectstringNoProject ID (overrides name for project lookup)
deploymentIdstringNoExisting deployment ID to redeploy
targetstringNoTarget environment: production, staging, or a custom environment identifier
gitSourcestringNoJSON string defining the Git Repository source to deploy (e.g. {"type":"github","repo":"owner/repo","ref":"main"})
forceNewstringNoForces a new deployment even if there is a previous similar deployment (0 or 1)
teamIdstringNoTeam ID to scope the request

Output

ParameterTypeDescription
idstringDeployment ID
namestringDeployment name
urlstringUnique deployment URL
readyStatestringDeployment ready state: QUEUED, BUILDING, ERROR, INITIALIZING, READY, CANCELED
projectIdstringAssociated project ID
createdAtnumberCreation timestamp in milliseconds
aliasarrayAssigned aliases
targetstringTarget environment
inspectorUrlstringVercel inspector URL

vercel_cancel_deployment

Cancel a running Vercel deployment

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
deploymentIdstringYesThe deployment ID to cancel
teamIdstringNoTeam ID to scope the request

Output

ParameterTypeDescription
idstringDeployment ID
namestringDeployment name
statestringDeployment state after cancellation
urlstringDeployment URL

vercel_delete_deployment

Delete a Vercel deployment

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
deploymentIdstringYesThe deployment ID or URL to delete
teamIdstringNoTeam ID to scope the request

Output

ParameterTypeDescription
uidstringThe removed deployment ID
statestringDeployment state after deletion (DELETED)

vercel_get_deployment_events

Get build and runtime events for a Vercel deployment

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
deploymentIdstringYesThe unique deployment identifier or hostname
directionstringNoOrder of events by timestamp: backward or forward (default: forward)
follownumberNoWhen set to 1, returns live events as they happen
limitnumberNoMaximum number of events to return (-1 for all)
sincenumberNoTimestamp to start pulling build logs from
untilnumberNoTimestamp to stop pulling build logs at
teamIdstringNoTeam ID to scope the request

Output

ParameterTypeDescription
eventsarrayList of deployment events
typestringEvent type: delimiter, command, stdout, stderr, exit, deployment-state, middleware, middleware-invocation, edge-function-invocation, metric, report, fatal
creatednumberEvent creation timestamp
datenumberEvent date timestamp
textstringEvent text content
serialstringEvent serial identifier
deploymentIdstringAssociated deployment ID
idstringEvent unique identifier
levelstringEvent level: error or warning
countnumberNumber of events returned

vercel_list_deployment_files

List files in a Vercel deployment

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
deploymentIdstringYesThe deployment ID to list files for
teamIdstringNoTeam ID to scope the request

Output

ParameterTypeDescription
filesarrayList of deployment files
namestringThe name of the file tree entry
typestringFile type: directory, file, symlink, lambda, middleware, or invalid
uidstringUnique file identifier (only valid for file type)
modenumberFile mode indicating file type and permissions
contentTypestringContent-type of the file (only valid for file type)
childrenarrayChild files of the directory (only valid for directory type)
namestringFile name
typestringEntry type
uidstringFile identifier
countnumberNumber of files returned

vercel_list_projects

List all projects in a Vercel team or account

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
searchstringNoSearch projects by name
limitnumberNoMaximum number of projects to return
teamIdstringNoTeam ID to scope the request

Output

ParameterTypeDescription
projectsarrayList of projects
idstringProject ID
namestringProject name
frameworkstringFramework
createdAtnumberCreation timestamp
updatedAtnumberLast updated timestamp
domainsarrayProject domains
countnumberNumber of projects returned
hasMorebooleanWhether more projects are available

vercel_get_project

Get details of a specific Vercel project

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
projectIdstringYesProject ID or name
teamIdstringNoTeam ID to scope the request

Output

ParameterTypeDescription
idstringProject ID
namestringProject name
frameworkstringProject framework
createdAtnumberCreation timestamp
updatedAtnumberLast updated timestamp
domainsarrayProject domains
linkobjectGit repository connection
typestringRepository type (github, gitlab, bitbucket)
repostringRepository name
orgstringOrganization or owner

vercel_create_project

Create a new Vercel project

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
namestringYesProject name
frameworkstringNoProject framework (e.g. nextjs, remix, vite)
gitRepositoryjsonNoGit repository connection object with type and repo
buildCommandstringNoCustom build command
outputDirectorystringNoCustom output directory
installCommandstringNoCustom install command
teamIdstringNoTeam ID to scope the request

Output

ParameterTypeDescription
idstringProject ID
namestringProject name
frameworkstringProject framework
createdAtnumberCreation timestamp
updatedAtnumberLast updated timestamp

vercel_update_project

Update an existing Vercel project

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
projectIdstringYesProject ID or name
namestringNoNew project name
frameworkstringNoProject framework (e.g. nextjs, remix, vite)
buildCommandstringNoCustom build command
outputDirectorystringNoCustom output directory
installCommandstringNoCustom install command
teamIdstringNoTeam ID to scope the request

Output

ParameterTypeDescription
idstringProject ID
namestringProject name
frameworkstringProject framework
updatedAtnumberLast updated timestamp

vercel_delete_project

Delete a Vercel project

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
projectIdstringYesProject ID or name
teamIdstringNoTeam ID to scope the request

Output

ParameterTypeDescription
deletedbooleanWhether the project was successfully deleted

vercel_pause_project

Pause a Vercel project

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
projectIdstringYesProject ID or name
teamIdstringNoTeam ID to scope the request

Output

ParameterTypeDescription
idstringProject ID
namestringProject name
pausedbooleanWhether the project is paused

vercel_unpause_project

Unpause a Vercel project

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
projectIdstringYesProject ID or name
teamIdstringNoTeam ID to scope the request

Output

ParameterTypeDescription
idstringProject ID
namestringProject name
pausedbooleanWhether the project is paused

vercel_list_project_domains

List all domains for a Vercel project

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
projectIdstringYesProject ID or name
teamIdstringNoTeam ID to scope the request
limitnumberNoMaximum number of domains to return

Output

ParameterTypeDescription
domainsarrayList of project domains
namestringDomain name
apexNamestringApex domain name
redirectstringRedirect target
redirectStatusCodenumberRedirect status code
verifiedbooleanWhether the domain is verified
gitBranchstringGit branch for the domain
createdAtnumberCreation timestamp
updatedAtnumberLast updated timestamp
countnumberNumber of domains returned
hasMorebooleanWhether more domains are available

vercel_add_project_domain

Add a domain to a Vercel project

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
projectIdstringYesProject ID or name
domainstringYesDomain name to add
redirectstringNoTarget domain for redirect
redirectStatusCodenumberNoHTTP status code for redirect (301, 302, 307, 308)
gitBranchstringNoGit branch to link the domain to
teamIdstringNoTeam ID to scope the request

Output

ParameterTypeDescription
namestringDomain name
apexNamestringApex domain name
verifiedbooleanWhether the domain is verified
gitBranchstringGit branch for the domain
redirectstringRedirect target domain
redirectStatusCodenumberHTTP status code for redirect (301, 302, 307, 308)
createdAtnumberCreation timestamp
updatedAtnumberLast updated timestamp

vercel_remove_project_domain

Remove a domain from a Vercel project

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
projectIdstringYesProject ID or name
domainstringYesDomain name to remove
teamIdstringNoTeam ID to scope the request

Output

ParameterTypeDescription
deletedbooleanWhether the domain was successfully removed

vercel_get_env_vars

Retrieve environment variables for a Vercel project

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
projectIdstringYesProject ID or name
teamIdstringNoTeam ID to scope the request

Output

ParameterTypeDescription
envsarrayList of environment variables
idstringEnvironment variable ID
keystringVariable name
valuestringVariable value
typestringVariable type (secret, system, encrypted, plain, sensitive)
targetarrayTarget environments
gitBranchstringGit branch filter
commentstringComment providing context for the variable
countnumberNumber of environment variables returned

vercel_create_env_var

Create an environment variable for a Vercel project

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
projectIdstringYesProject ID or name
keystringYesEnvironment variable name
valuestringYesEnvironment variable value
targetstringYesComma-separated list of target environments (production, preview, development)
typestringNoVariable type: system, secret, encrypted, plain, or sensitive (default: plain)
gitBranchstringNoGit branch to associate with the variable (requires target to include preview)
commentstringNoComment to add context to the variable (max 500 characters)
teamIdstringNoTeam ID to scope the request

Output

ParameterTypeDescription
idstringEnvironment variable ID
keystringVariable name
valuestringVariable value
typestringVariable type (secret, system, encrypted, plain, sensitive)
targetarrayTarget environments
gitBranchstringGit branch filter
commentstringComment providing context for the variable

vercel_update_env_var

Update an environment variable for a Vercel project

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
projectIdstringYesProject ID or name
envIdstringYesEnvironment variable ID to update
keystringNoNew variable name
valuestringNoNew variable value
targetstringNoComma-separated list of target environments (production, preview, development)
typestringNoVariable type: system, secret, encrypted, plain, or sensitive
gitBranchstringNoGit branch to associate with the variable (requires target to include preview)
commentstringNoComment to add context to the variable (max 500 characters)
teamIdstringNoTeam ID to scope the request

Output

ParameterTypeDescription
idstringEnvironment variable ID
keystringVariable name
valuestringVariable value
typestringVariable type (secret, system, encrypted, plain, sensitive)
targetarrayTarget environments
gitBranchstringGit branch filter
commentstringComment providing context for the variable

vercel_delete_env_var

Delete an environment variable from a Vercel project

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
projectIdstringYesProject ID or name
envIdstringYesEnvironment variable ID to delete
teamIdstringNoTeam ID to scope the request

Output

ParameterTypeDescription
deletedbooleanWhether the environment variable was successfully deleted

vercel_list_domains

List all domains in a Vercel account or team

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
limitnumberNoMaximum number of domains to return (default 20)
teamIdstringNoTeam ID to scope the request

Output

ParameterTypeDescription
domainsarrayList of domains
idstringDomain ID
namestringDomain name
verifiedbooleanWhether domain is verified
createdAtnumberCreation timestamp
expiresAtnumberExpiration timestamp
serviceTypestringService type (zeit.world, external, na)
nameserversarrayCurrent nameservers
intendedNameserversarrayIntended nameservers
renewbooleanWhether auto-renewal is enabled
boughtAtnumberPurchase timestamp
countnumberNumber of domains returned
hasMorebooleanWhether more domains are available

vercel_get_domain

Get information about a specific domain in a Vercel account

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
domainstringYesThe domain name to retrieve
teamIdstringNoTeam ID to scope the request

Output

ParameterTypeDescription
idstringDomain ID
namestringDomain name
verifiedbooleanWhether domain is verified
createdAtnumberCreation timestamp
expiresAtnumberExpiration timestamp
serviceTypestringService type (zeit.world, external, na)
nameserversarrayCurrent nameservers
intendedNameserversarrayIntended nameservers
customNameserversarrayCustom nameservers
renewbooleanWhether auto-renewal is enabled
boughtAtnumberPurchase timestamp
transferredAtnumberTransfer completion timestamp

vercel_add_domain

Add a new domain to a Vercel account or team

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
namestringYesThe domain name to add
teamIdstringNoTeam ID to scope the request

Output

ParameterTypeDescription
idstringDomain ID
namestringDomain name
verifiedbooleanWhether domain is verified
createdAtnumberCreation timestamp
serviceTypestringService type (zeit.world, external, na)
nameserversarrayCurrent nameservers
intendedNameserversarrayIntended nameservers

vercel_delete_domain

Delete a domain from a Vercel account or team

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
domainstringYesThe domain name to delete
teamIdstringNoTeam ID to scope the request

Output

ParameterTypeDescription
uidstringThe ID of the deleted domain
deletedbooleanWhether the domain was deleted

vercel_get_domain_config

Get the configuration for a domain in a Vercel account

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
domainstringYesThe domain name to get configuration for
teamIdstringNoTeam ID to scope the request

Output

ParameterTypeDescription
configuredBystringHow the domain is configured (CNAME, A, http, dns-01, or null)
acceptedChallengesarrayAccepted challenge types for certificate issuance (dns-01, http-01)
misconfiguredbooleanWhether the domain is misconfigured for TLS certificate generation
recommendedIPv4arrayRecommended IPv4 addresses with rank values
ranknumberPriority rank (1 is preferred)
valuearrayIPv4 addresses
recommendedCNAMEarrayRecommended CNAME records with rank values
ranknumberPriority rank (1 is preferred)
valuestringCNAME value

vercel_list_dns_records

List all DNS records for a domain in a Vercel account

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
domainstringYesThe domain name to list records for
limitnumberNoMaximum number of records to return
teamIdstringNoTeam ID to scope the request

Output

ParameterTypeDescription
recordsarrayList of DNS records
idstringRecord ID
slugstringRecord slug
namestringRecord name
typestringRecord type (A, AAAA, ALIAS, CAA, CNAME, HTTPS, MX, SRV, TXT, NS)
valuestringRecord value
ttlnumberTime to live in seconds
mxPrioritynumberMX record priority
prioritynumberRecord priority
creatorstringCreator identifier
createdAtnumberCreation timestamp
updatedAtnumberLast update timestamp
commentstringRecord comment
countnumberNumber of records returned
hasMorebooleanWhether more records are available

vercel_create_dns_record

Create a DNS record for a domain in a Vercel account

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
domainstringYesThe domain name to create the record for
recordNamestringYesThe subdomain or record name
recordTypestringYesDNS record type (A, AAAA, ALIAS, CAA, CNAME, HTTPS, MX, SRV, TXT, NS)
valuestringYesThe value of the DNS record
ttlnumberNoTime to live in seconds
mxPrioritynumberNoPriority for MX records
teamIdstringNoTeam ID to scope the request

Output

ParameterTypeDescription
uidstringThe DNS record ID
updatednumberTimestamp of the update

vercel_delete_dns_record

Delete a DNS record for a domain in a Vercel account

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
domainstringYesThe domain name the record belongs to
recordIdstringYesThe ID of the DNS record to delete
teamIdstringNoTeam ID to scope the request

Output

ParameterTypeDescription
deletedbooleanWhether the record was deleted

vercel_list_aliases

List aliases for a Vercel project or team

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
projectIdstringNoFilter aliases by project ID
domainstringNoFilter aliases by domain
limitnumberNoMaximum number of aliases to return
teamIdstringNoTeam ID to scope the request

Output

ParameterTypeDescription
aliasesarrayList of aliases
uidstringAlias ID
aliasstringAlias hostname
deploymentIdstringAssociated deployment ID
projectIdstringAssociated project ID
createdAtnumberCreation timestamp in milliseconds
updatedAtnumberLast update timestamp in milliseconds
countnumberNumber of aliases returned
hasMorebooleanWhether more aliases are available

vercel_get_alias

Get details about a specific alias by ID or hostname

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
aliasIdstringYesAlias ID or hostname to look up
teamIdstringNoTeam ID to scope the request

Output

ParameterTypeDescription
uidstringAlias ID
aliasstringAlias hostname
deploymentIdstringAssociated deployment ID
projectIdstringAssociated project ID
createdAtnumberCreation timestamp in milliseconds
updatedAtnumberLast update timestamp in milliseconds
redirectstringTarget domain for redirect aliases
redirectStatusCodenumberHTTP status code for redirect (301, 302, 307, or 308)

vercel_create_alias

Assign an alias (domain/subdomain) to a deployment

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
deploymentIdstringYesDeployment ID to assign the alias to
aliasstringYesThe domain or subdomain to assign as an alias
teamIdstringNoTeam ID to scope the request

Output

ParameterTypeDescription
uidstringAlias ID
aliasstringAlias hostname
createdstringCreation timestamp as ISO 8601 date-time string
oldDeploymentIdstringID of the previously aliased deployment, if the alias was reassigned

vercel_delete_alias

Delete an alias by its ID

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
aliasIdstringYesAlias ID to delete
teamIdstringNoTeam ID to scope the request

Output

ParameterTypeDescription
statusstringDeletion status (SUCCESS)

vercel_list_edge_configs

List all Edge Config stores for a team

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
teamIdstringNoTeam ID to scope the request

Output

ParameterTypeDescription
edgeConfigsarrayList of Edge Config stores
idstringEdge Config ID
slugstringEdge Config slug
ownerIdstringOwner ID
digeststringContent digest hash
createdAtnumberCreation timestamp
updatedAtnumberLast update timestamp
itemCountnumberNumber of items
sizeInBytesnumberSize in bytes
countnumberNumber of Edge Configs returned

vercel_get_edge_config

Get details about a specific Edge Config store

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
edgeConfigIdstringYesEdge Config ID to look up
teamIdstringNoTeam ID to scope the request

Output

ParameterTypeDescription
idstringEdge Config ID
slugstringEdge Config slug
ownerIdstringOwner ID
digeststringContent digest hash
createdAtnumberCreation timestamp
updatedAtnumberLast update timestamp
itemCountnumberNumber of items
sizeInBytesnumberSize in bytes

vercel_create_edge_config

Create a new Edge Config store

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
slugstringYesThe name/slug for the new Edge Config
teamIdstringNoTeam ID to scope the request

Output

ParameterTypeDescription
idstringEdge Config ID
slugstringEdge Config slug
ownerIdstringOwner ID
digeststringContent digest hash
createdAtnumberCreation timestamp
updatedAtnumberLast update timestamp
itemCountnumberNumber of items
sizeInBytesnumberSize in bytes

vercel_get_edge_config_items

Get all items in an Edge Config store

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
edgeConfigIdstringYesEdge Config ID to get items from
teamIdstringNoTeam ID to scope the request

Output

ParameterTypeDescription
itemsarrayList of Edge Config items
keystringItem key
valuejsonItem value
descriptionstringItem description
edgeConfigIdstringParent Edge Config ID
createdAtnumberCreation timestamp
updatedAtnumberLast update timestamp
countnumberNumber of items returned

vercel_update_edge_config_items

Create, update, upsert, or delete items in an Edge Config store

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
edgeConfigIdstringYesEdge Config ID to update items in
itemsjsonYesArray of operations: [{operation: "create"|"update"|"upsert"|"delete", key: string, value?: any}]
teamIdstringNoTeam ID to scope the request

Output

ParameterTypeDescription
statusstringOperation status

vercel_list_webhooks

List webhooks for a Vercel project or team

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
projectIdstringNoFilter webhooks by project ID
teamIdstringNoTeam ID to scope the request

Output

ParameterTypeDescription
webhooksarrayList of webhooks
idstringWebhook ID
urlstringWebhook URL
eventsarrayEvents the webhook listens to
ownerIdstringOwner ID
projectIdsarrayAssociated project IDs
createdAtnumberCreation timestamp
updatedAtnumberLast updated timestamp
countnumberNumber of webhooks returned

vercel_create_webhook

Create a new webhook for a Vercel team

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
urlstringYesWebhook URL (must be https)
eventsstringYesComma-separated event names to subscribe to
projectIdsstringNoComma-separated project IDs to scope the webhook to
teamIdstringYesTeam ID to create the webhook for

Output

ParameterTypeDescription
idstringWebhook ID
urlstringWebhook URL
secretstringWebhook signing secret
eventsarrayEvents the webhook listens to
ownerIdstringOwner ID
projectIdsarrayAssociated project IDs
createdAtnumberCreation timestamp
updatedAtnumberLast updated timestamp

vercel_delete_webhook

Delete a webhook from a Vercel team

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
webhookIdstringYesThe webhook ID to delete
teamIdstringNoTeam ID to scope the request

Output

ParameterTypeDescription
deletedbooleanWhether the webhook was successfully deleted

vercel_create_check

Create a new deployment check

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
deploymentIdstringYesDeployment ID to create the check for
namestringYesName of the check (max 100 characters)
blockingbooleanYesWhether the check blocks the deployment
pathstringNoPage path being checked
detailsUrlstringNoURL with details about the check
externalIdstringNoExternal identifier for the check
rerequestablebooleanNoWhether the check can be rerequested
teamIdstringNoTeam ID to scope the request

Output

ParameterTypeDescription
idstringCheck ID
namestringCheck name
statusstringCheck status: registered, running, or completed
conclusionstringCheck conclusion: canceled, failed, neutral, succeeded, skipped, or stale
blockingbooleanWhether the check blocks the deployment
deploymentIdstringAssociated deployment ID
integrationIdstringAssociated integration ID
externalIdstringExternal identifier
detailsUrlstringURL with details about the check
pathstringPage path being checked
rerequestablebooleanWhether the check can be rerequested
createdAtnumberCreation timestamp in milliseconds
updatedAtnumberLast update timestamp in milliseconds
startedAtnumberStart timestamp in milliseconds
completedAtnumberCompletion timestamp in milliseconds

vercel_get_check

Get details of a specific deployment check

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
deploymentIdstringYesDeployment ID the check belongs to
checkIdstringYesCheck ID to retrieve
teamIdstringNoTeam ID to scope the request

Output

ParameterTypeDescription
idstringCheck ID
namestringCheck name
statusstringCheck status: registered, running, or completed
conclusionstringCheck conclusion: canceled, failed, neutral, succeeded, skipped, or stale
blockingbooleanWhether the check blocks the deployment
deploymentIdstringAssociated deployment ID
integrationIdstringAssociated integration ID
externalIdstringExternal identifier
detailsUrlstringURL with details about the check
pathstringPage path being checked
rerequestablebooleanWhether the check can be rerequested
createdAtnumberCreation timestamp in milliseconds
updatedAtnumberLast update timestamp in milliseconds
startedAtnumberStart timestamp in milliseconds
completedAtnumberCompletion timestamp in milliseconds

vercel_list_checks

List all checks for a deployment

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
deploymentIdstringYesDeployment ID to list checks for
teamIdstringNoTeam ID to scope the request

Output

ParameterTypeDescription
checksarrayList of deployment checks
idstringCheck ID
namestringCheck name
statusstringCheck status
conclusionstringCheck conclusion
blockingbooleanWhether the check blocks the deployment
deploymentIdstringAssociated deployment ID
integrationIdstringAssociated integration ID
externalIdstringExternal identifier
detailsUrlstringURL with details about the check
pathstringPage path being checked
rerequestablebooleanWhether the check can be rerequested
createdAtnumberCreation timestamp
updatedAtnumberLast update timestamp
startedAtnumberStart timestamp
completedAtnumberCompletion timestamp
countnumberTotal number of checks

vercel_update_check

Update an existing deployment check

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
deploymentIdstringYesDeployment ID the check belongs to
checkIdstringYesCheck ID to update
namestringNoUpdated name of the check
statusstringNoUpdated status: running or completed
conclusionstringNoCheck conclusion: canceled, failed, neutral, succeeded, or skipped
detailsUrlstringNoURL with details about the check
externalIdstringNoExternal identifier for the check
pathstringNoPage path being checked
outputstringNoJSON string with check output metrics
teamIdstringNoTeam ID to scope the request

Output

ParameterTypeDescription
idstringCheck ID
namestringCheck name
statusstringCheck status: registered, running, or completed
conclusionstringCheck conclusion: canceled, failed, neutral, succeeded, skipped, or stale
blockingbooleanWhether the check blocks the deployment
deploymentIdstringAssociated deployment ID
integrationIdstringAssociated integration ID
externalIdstringExternal identifier
detailsUrlstringURL with details about the check
pathstringPage path being checked
rerequestablebooleanWhether the check can be rerequested
createdAtnumberCreation timestamp in milliseconds
updatedAtnumberLast update timestamp in milliseconds
startedAtnumberStart timestamp in milliseconds
completedAtnumberCompletion timestamp in milliseconds

vercel_rerequest_check

Rerequest a deployment check

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
deploymentIdstringYesDeployment ID the check belongs to
checkIdstringYesCheck ID to rerequest
teamIdstringNoTeam ID to scope the request

Output

ParameterTypeDescription
rerequestedbooleanWhether the check was successfully rerequested

vercel_list_teams

List all teams in a Vercel account

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
limitnumberNoMaximum number of teams to return
sincenumberNoTimestamp in milliseconds to only include teams created since then
untilnumberNoTimestamp in milliseconds to only include teams created until then

Output

ParameterTypeDescription
teamsarrayList of teams
idstringTeam ID
slugstringTeam slug
namestringTeam name
avatarstringAvatar file ID
createdAtnumberCreation timestamp in milliseconds
updatedAtnumberLast update timestamp in milliseconds
creatorIdstringUser ID of team creator
membershipobjectCurrent user membership details
rolestringMembership role
confirmedbooleanWhether membership is confirmed
creatednumberMembership creation timestamp
uidstringUser ID of the member
teamIdstringTeam ID
countnumberNumber of teams returned
paginationobjectPagination information
countnumberItems in current page
nextnumberTimestamp for next page request
prevnumberTimestamp for previous page request

vercel_get_team

Get information about a specific Vercel team

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
teamIdstringYesThe team ID to retrieve

Output

ParameterTypeDescription
idstringTeam ID
slugstringTeam slug
namestringTeam name
avatarstringAvatar file ID
descriptionstringShort team description
createdAtnumberCreation timestamp in milliseconds
updatedAtnumberLast update timestamp in milliseconds
creatorIdstringUser ID of team creator
membershipobjectCurrent user membership details
uidstringUser ID of the member
teamIdstringTeam ID
rolestringMembership role
confirmedbooleanWhether membership is confirmed
creatednumberMembership creation timestamp
createdAtnumberMembership creation timestamp (milliseconds)
accessRequestedAtnumberWhen access was requested
teamRolesarrayTeam role assignments
teamPermissionsarrayTeam permission assignments

vercel_list_team_members

List all members of a Vercel team

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token
teamIdstringYesThe team ID to list members for
limitnumberNoMaximum number of members to return
rolestringNoFilter by role (OWNER, MEMBER, DEVELOPER, SECURITY, BILLING, VIEWER, VIEWER_FOR_PLUS, CONTRIBUTOR)
sincenumberNoTimestamp in milliseconds to only include members added since then
untilnumberNoTimestamp in milliseconds to only include members added until then
searchstringNoSearch team members by their name, username, and email

Output

ParameterTypeDescription
membersarrayList of team members
uidstringMember user ID
emailstringMember email
usernamestringMember username
namestringMember full name
avatarstringAvatar file ID
rolestringMember role
confirmedbooleanWhether membership is confirmed
createdAtnumberJoin timestamp in milliseconds
joinedFromobjectOrigin of how the member joined
originstringJoin origin identifier
countnumberNumber of members returned
paginationobjectPagination information
hasNextbooleanWhether there are more pages
countnumberItems in current page

vercel_get_user

Get information about the authenticated Vercel user

Input

ParameterTypeRequiredDescription
apiKeystringYesVercel Access Token

Output

ParameterTypeDescription
idstringUser ID
emailstringUser email
usernamestringUsername
namestringDisplay name
avatarstringSHA1 hash of the avatar
defaultTeamIdstringDefault team ID
createdAtnumberAccount creation timestamp in milliseconds
stagingPrefixstringPrefix for preview deployment URLs
softBlockobjectAccount restriction details if blocked
blockedAtnumberWhen the account was blocked
reasonstringReason for the block
hasTrialAvailablebooleanWhether a trial is available

On this page

Usage Instructions
Tools
vercel_list_deployments
Input
Output
vercel_get_deployment
Input
Output
vercel_create_deployment
Input
Output
vercel_cancel_deployment
Input
Output
vercel_delete_deployment
Input
Output
vercel_get_deployment_events
Input
Output
vercel_list_deployment_files
Input
Output
vercel_list_projects
Input
Output
vercel_get_project
Input
Output
vercel_create_project
Input
Output
vercel_update_project
Input
Output
vercel_delete_project
Input
Output
vercel_pause_project
Input
Output
vercel_unpause_project
Input
Output
vercel_list_project_domains
Input
Output
vercel_add_project_domain
Input
Output
vercel_remove_project_domain
Input
Output
vercel_get_env_vars
Input
Output
vercel_create_env_var
Input
Output
vercel_update_env_var
Input
Output
vercel_delete_env_var
Input
Output
vercel_list_domains
Input
Output
vercel_get_domain
Input
Output
vercel_add_domain
Input
Output
vercel_delete_domain
Input
Output
vercel_get_domain_config
Input
Output
vercel_list_dns_records
Input
Output
vercel_create_dns_record
Input
Output
vercel_delete_dns_record
Input
Output
vercel_list_aliases
Input
Output
vercel_get_alias
Input
Output
vercel_create_alias
Input
Output
vercel_delete_alias
Input
Output
vercel_list_edge_configs
Input
Output
vercel_get_edge_config
Input
Output
vercel_create_edge_config
Input
Output
vercel_get_edge_config_items
Input
Output
vercel_update_edge_config_items
Input
Output
vercel_list_webhooks
Input
Output
vercel_create_webhook
Input
Output
vercel_delete_webhook
Input
Output
vercel_create_check
Input
Output
vercel_get_check
Input
Output
vercel_list_checks
Input
Output
vercel_update_check
Input
Output
vercel_rerequest_check
Input
Output
vercel_list_teams
Input
Output
vercel_get_team
Input
Output
vercel_list_team_members
Input
Output
vercel_get_user
Input
Output
Start building today
Trusted by over 60,000 builders.
Build Agentic workflows visually on a drag-and-drop canvas or with natural language.
Get started