AACFlow

Vercel

Vercel-Deployments, -Projekte und -Infrastruktur verwalten

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 AACFlow, 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.

Nutzungsanleitung

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

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
projectIdstringNeinFilter deployments by project ID or name
targetstringNeinFilter by environment: production or staging
statestringNeinFilter by state: BUILDING, ERROR, INITIALIZING, QUEUED, READY, CANCELED
appstringNeinFilter by deployment name
sincenumberNeinGet deployments created after this JavaScript timestamp
untilnumberNeinGet deployments created before this JavaScript timestamp
limitnumberNeinMaximum number of deployments to return per request
teamIdstringNeinTeam ID to scope the request

Ausgabe

ParameterTypBeschreibung
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

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
deploymentIdstringJaThe unique deployment identifier or hostname
withGitRepoInfostringNeinWhether to add in gitRepo information (true/false)
teamIdstringNeinTeam ID to scope the request

Ausgabe

ParameterTypBeschreibung
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

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
namestringJaProject name for the deployment
projectstringNeinProject ID (overrides name for project lookup)
deploymentIdstringNeinExisting deployment ID to redeploy
targetstringNeinTarget environment: production, staging, or a custom environment identifier
gitSourcestringNeinJSON string defining the Git Repository source to deploy (e.g. {"type":"github","repo":"owner/repo","ref":"main"})
forceNewstringNeinForces a new deployment even if there is a previous similar deployment (0 or 1)
teamIdstringNeinTeam ID to scope the request

Ausgabe

ParameterTypBeschreibung
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

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
deploymentIdstringJaThe deployment ID to cancel
teamIdstringNeinTeam ID to scope the request

Ausgabe

ParameterTypBeschreibung
idstringDeployment ID
namestringDeployment name
statestringDeployment state after cancellation
urlstringDeployment URL

vercel_delete_deployment

Delete a Vercel deployment

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
deploymentIdstringJaThe deployment ID or URL to delete
teamIdstringNeinTeam ID to scope the request

Ausgabe

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

vercel_get_deployment_events

Get build and runtime events for a Vercel deployment

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
deploymentIdstringJaThe unique deployment identifier or hostname
directionstringNeinOrder of events by timestamp: backward or forward (default: forward)
follownumberNeinWhen set to 1, returns live events as they happen
limitnumberNeinMaximum number of events to return (-1 for all)
sincenumberNeinTimestamp to start pulling build logs from
untilnumberNeinTimestamp to stop pulling build logs at
teamIdstringNeinTeam ID to scope the request

Ausgabe

ParameterTypBeschreibung
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

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
deploymentIdstringJaThe deployment ID to list files for
teamIdstringNeinTeam ID to scope the request

Ausgabe

ParameterTypBeschreibung
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

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
searchstringNeinSearch projects by name
limitnumberNeinMaximum number of projects to return
teamIdstringNeinTeam ID to scope the request

Ausgabe

ParameterTypBeschreibung
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

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
projectIdstringJaProject ID or name
teamIdstringNeinTeam ID to scope the request

Ausgabe

ParameterTypBeschreibung
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

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
namestringJaProject name
frameworkstringNeinProject framework (e.g. nextjs, remix, vite)
gitRepositoryjsonNeinGit repository connection object with type and repo
buildCommandstringNeinCustom build command
outputDirectorystringNeinCustom output directory
installCommandstringNeinCustom install command
teamIdstringNeinTeam ID to scope the request

Ausgabe

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

vercel_update_project

Update an existing Vercel project

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
projectIdstringJaProject ID or name
namestringNeinNew project name
frameworkstringNeinProject framework (e.g. nextjs, remix, vite)
buildCommandstringNeinCustom build command
outputDirectorystringNeinCustom output directory
installCommandstringNeinCustom install command
teamIdstringNeinTeam ID to scope the request

Ausgabe

ParameterTypBeschreibung
idstringProject ID
namestringProject name
frameworkstringProject framework
updatedAtnumberLast updated timestamp

vercel_delete_project

Delete a Vercel project

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
projectIdstringJaProject ID or name
teamIdstringNeinTeam ID to scope the request

Ausgabe

ParameterTypBeschreibung
deletedbooleanWhether the project was successfully deleted

vercel_pause_project

Pause a Vercel project

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
projectIdstringJaProject ID or name
teamIdstringNeinTeam ID to scope the request

Ausgabe

ParameterTypBeschreibung
idstringProject ID
namestringProject name
pausedbooleanWhether the project is paused

vercel_unpause_project

Unpause a Vercel project

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
projectIdstringJaProject ID or name
teamIdstringNeinTeam ID to scope the request

Ausgabe

ParameterTypBeschreibung
idstringProject ID
namestringProject name
pausedbooleanWhether the project is paused

vercel_list_project_domains

List all domains for a Vercel project

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
projectIdstringJaProject ID or name
teamIdstringNeinTeam ID to scope the request
limitnumberNeinMaximum number of domains to return

Ausgabe

ParameterTypBeschreibung
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

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
projectIdstringJaProject ID or name
domainstringJaDomain name to add
redirectstringNeinTarget domain for redirect
redirectStatusCodenumberNeinHTTP status code for redirect (301, 302, 307, 308)
gitBranchstringNeinGit branch to link the domain to
teamIdstringNeinTeam ID to scope the request

Ausgabe

ParameterTypBeschreibung
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

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
projectIdstringJaProject ID or name
domainstringJaDomain name to remove
teamIdstringNeinTeam ID to scope the request

Ausgabe

ParameterTypBeschreibung
deletedbooleanWhether the domain was successfully removed

vercel_get_env_vars

Retrieve environment variables for a Vercel project

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
projectIdstringJaProject ID or name
teamIdstringNeinTeam ID to scope the request

Ausgabe

ParameterTypBeschreibung
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

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
projectIdstringJaProject ID or name
keystringJaEnvironment variable name
valuestringJaEnvironment variable value
targetstringJaComma-separated list of target environments (production, preview, development)
typestringNeinVariable type: system, secret, encrypted, plain, or sensitive (default: plain)
gitBranchstringNeinGit branch to associate with the variable (requires target to include preview)
commentstringNeinComment to add context to the variable (max 500 characters)
teamIdstringNeinTeam ID to scope the request

Ausgabe

ParameterTypBeschreibung
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

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
projectIdstringJaProject ID or name
envIdstringJaEnvironment variable ID to update
keystringNeinNew variable name
valuestringNeinNew variable value
targetstringNeinComma-separated list of target environments (production, preview, development)
typestringNeinVariable type: system, secret, encrypted, plain, or sensitive
gitBranchstringNeinGit branch to associate with the variable (requires target to include preview)
commentstringNeinComment to add context to the variable (max 500 characters)
teamIdstringNeinTeam ID to scope the request

Ausgabe

ParameterTypBeschreibung
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

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
projectIdstringJaProject ID or name
envIdstringJaEnvironment variable ID to delete
teamIdstringNeinTeam ID to scope the request

Ausgabe

ParameterTypBeschreibung
deletedbooleanWhether the environment variable was successfully deleted

vercel_list_domains

List all domains in a Vercel account or team

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
limitnumberNeinMaximum number of domains to return (default 20)
teamIdstringNeinTeam ID to scope the request

Ausgabe

ParameterTypBeschreibung
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

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
domainstringJaThe domain name to retrieve
teamIdstringNeinTeam ID to scope the request

Ausgabe

ParameterTypBeschreibung
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

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
namestringJaThe domain name to add
teamIdstringNeinTeam ID to scope the request

Ausgabe

ParameterTypBeschreibung
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

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
domainstringJaThe domain name to delete
teamIdstringNeinTeam ID to scope the request

Ausgabe

ParameterTypBeschreibung
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

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
domainstringJaThe domain name to get configuration for
teamIdstringNeinTeam ID to scope the request

Ausgabe

ParameterTypBeschreibung
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

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
domainstringJaThe domain name to list records for
limitnumberNeinMaximum number of records to return
teamIdstringNeinTeam ID to scope the request

Ausgabe

ParameterTypBeschreibung
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

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
domainstringJaThe domain name to create the record for
recordNamestringJaThe subdomain or record name
recordTypestringJaDNS record type (A, AAAA, ALIAS, CAA, CNAME, HTTPS, MX, SRV, TXT, NS)
valuestringJaThe value of the DNS record
ttlnumberNeinTime to live in seconds
mxPrioritynumberNeinPriority for MX records
teamIdstringNeinTeam ID to scope the request

Ausgabe

ParameterTypBeschreibung
uidstringThe DNS record ID
updatednumberTimestamp of the update

vercel_delete_dns_record

Delete a DNS record for a domain in a Vercel account

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
domainstringJaThe domain name the record belongs to
recordIdstringJaThe ID of the DNS record to delete
teamIdstringNeinTeam ID to scope the request

Ausgabe

ParameterTypBeschreibung
deletedbooleanWhether the record was deleted

vercel_list_aliases

List aliases for a Vercel project or team

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
projectIdstringNeinFilter aliases by project ID
domainstringNeinFilter aliases by domain
limitnumberNeinMaximum number of aliases to return
teamIdstringNeinTeam ID to scope the request

Ausgabe

ParameterTypBeschreibung
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

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
aliasIdstringJaAlias ID or hostname to look up
teamIdstringNeinTeam ID to scope the request

Ausgabe

ParameterTypBeschreibung
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

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
deploymentIdstringJaDeployment ID to assign the alias to
aliasstringJaThe domain or subdomain to assign as an alias
teamIdstringNeinTeam ID to scope the request

Ausgabe

ParameterTypBeschreibung
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

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
aliasIdstringJaAlias ID to delete
teamIdstringNeinTeam ID to scope the request

Ausgabe

ParameterTypBeschreibung
statusstringDeletion status (SUCCESS)

vercel_list_edge_configs

List all Edge Config stores for a team

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
teamIdstringNeinTeam ID to scope the request

Ausgabe

ParameterTypBeschreibung
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

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
edgeConfigIdstringJaEdge Config ID to look up
teamIdstringNeinTeam ID to scope the request

Ausgabe

ParameterTypBeschreibung
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

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
slugstringJaThe name/slug for the new Edge Config
teamIdstringNeinTeam ID to scope the request

Ausgabe

ParameterTypBeschreibung
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

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
edgeConfigIdstringJaEdge Config ID to get items from
teamIdstringNeinTeam ID to scope the request

Ausgabe

ParameterTypBeschreibung
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

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
edgeConfigIdstringJaEdge Config ID to update items in
itemsjsonJaArray of operations: [{operation: "create"|"update"|"upsert"|"delete", key: string, value?: any}]
teamIdstringNeinTeam ID to scope the request

Ausgabe

ParameterTypBeschreibung
statusstringOperation status

vercel_list_webhooks

List webhooks for a Vercel project or team

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
projectIdstringNeinFilter webhooks by project ID
teamIdstringNeinTeam ID to scope the request

Ausgabe

ParameterTypBeschreibung
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

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
urlstringJaWebhook URL (must be https)
eventsstringJaComma-separated event names to subscribe to
projectIdsstringNeinComma-separated project IDs to scope the webhook to
teamIdstringJaTeam ID to create the webhook for

Ausgabe

ParameterTypBeschreibung
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

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
webhookIdstringJaThe webhook ID to delete
teamIdstringNeinTeam ID to scope the request

Ausgabe

ParameterTypBeschreibung
deletedbooleanWhether the webhook was successfully deleted

vercel_create_check

Create a new deployment check

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
deploymentIdstringJaDeployment ID to create the check for
namestringJaName of the check (max 100 characters)
blockingbooleanJaWhether the check blocks the deployment
pathstringNeinPage path being checked
detailsUrlstringNeinURL with details about the check
externalIdstringNeinExternal identifier for the check
rerequestablebooleanNeinWhether the check can be rerequested
teamIdstringNeinTeam ID to scope the request

Ausgabe

ParameterTypBeschreibung
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

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
deploymentIdstringJaDeployment ID the check belongs to
checkIdstringJaCheck ID to retrieve
teamIdstringNeinTeam ID to scope the request

Ausgabe

ParameterTypBeschreibung
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

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
deploymentIdstringJaDeployment ID to list checks for
teamIdstringNeinTeam ID to scope the request

Ausgabe

ParameterTypBeschreibung
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

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
deploymentIdstringJaDeployment ID the check belongs to
checkIdstringJaCheck ID to update
namestringNeinUpdated name of the check
statusstringNeinUpdated status: running or completed
conclusionstringNeinCheck conclusion: canceled, failed, neutral, succeeded, or skipped
detailsUrlstringNeinURL with details about the check
externalIdstringNeinExternal identifier for the check
pathstringNeinPage path being checked
outputstringNeinJSON string with check output metrics
teamIdstringNeinTeam ID to scope the request

Ausgabe

ParameterTypBeschreibung
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

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
deploymentIdstringJaDeployment ID the check belongs to
checkIdstringJaCheck ID to rerequest
teamIdstringNeinTeam ID to scope the request

Ausgabe

ParameterTypBeschreibung
rerequestedbooleanWhether the check was successfully rerequested

vercel_list_teams

List all teams in a Vercel account

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
limitnumberNeinMaximum number of teams to return
sincenumberNeinTimestamp in milliseconds to only include teams created since then
untilnumberNeinTimestamp in milliseconds to only include teams created until then

Ausgabe

ParameterTypBeschreibung
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

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
teamIdstringJaThe team ID to retrieve

Ausgabe

ParameterTypBeschreibung
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

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token
teamIdstringJaThe team ID to list members for
limitnumberNeinMaximum number of members to return
rolestringNeinFilter by role (OWNER, MEMBER, DEVELOPER, SECURITY, BILLING, VIEWER, VIEWER_FOR_PLUS, CONTRIBUTOR)
sincenumberNeinTimestamp in milliseconds to only include members added since then
untilnumberNeinTimestamp in milliseconds to only include members added until then
searchstringNeinSearch team members by their name, username, and email

Ausgabe

ParameterTypBeschreibung
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

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaVercel Access Token

Ausgabe

ParameterTypBeschreibung
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

Nutzungsanleitung
Tools
vercel_list_deployments
Eingabe
Ausgabe
vercel_get_deployment
Eingabe
Ausgabe
vercel_create_deployment
Eingabe
Ausgabe
vercel_cancel_deployment
Eingabe
Ausgabe
vercel_delete_deployment
Eingabe
Ausgabe
vercel_get_deployment_events
Eingabe
Ausgabe
vercel_list_deployment_files
Eingabe
Ausgabe
vercel_list_projects
Eingabe
Ausgabe
vercel_get_project
Eingabe
Ausgabe
vercel_create_project
Eingabe
Ausgabe
vercel_update_project
Eingabe
Ausgabe
vercel_delete_project
Eingabe
Ausgabe
vercel_pause_project
Eingabe
Ausgabe
vercel_unpause_project
Eingabe
Ausgabe
vercel_list_project_domains
Eingabe
Ausgabe
vercel_add_project_domain
Eingabe
Ausgabe
vercel_remove_project_domain
Eingabe
Ausgabe
vercel_get_env_vars
Eingabe
Ausgabe
vercel_create_env_var
Eingabe
Ausgabe
vercel_update_env_var
Eingabe
Ausgabe
vercel_delete_env_var
Eingabe
Ausgabe
vercel_list_domains
Eingabe
Ausgabe
vercel_get_domain
Eingabe
Ausgabe
vercel_add_domain
Eingabe
Ausgabe
vercel_delete_domain
Eingabe
Ausgabe
vercel_get_domain_config
Eingabe
Ausgabe
vercel_list_dns_records
Eingabe
Ausgabe
vercel_create_dns_record
Eingabe
Ausgabe
vercel_delete_dns_record
Eingabe
Ausgabe
vercel_list_aliases
Eingabe
Ausgabe
vercel_get_alias
Eingabe
Ausgabe
vercel_create_alias
Eingabe
Ausgabe
vercel_delete_alias
Eingabe
Ausgabe
vercel_list_edge_configs
Eingabe
Ausgabe
vercel_get_edge_config
Eingabe
Ausgabe
vercel_create_edge_config
Eingabe
Ausgabe
vercel_get_edge_config_items
Eingabe
Ausgabe
vercel_update_edge_config_items
Eingabe
Ausgabe
vercel_list_webhooks
Eingabe
Ausgabe
vercel_create_webhook
Eingabe
Ausgabe
vercel_delete_webhook
Eingabe
Ausgabe
vercel_create_check
Eingabe
Ausgabe
vercel_get_check
Eingabe
Ausgabe
vercel_list_checks
Eingabe
Ausgabe
vercel_update_check
Eingabe
Ausgabe
vercel_rerequest_check
Eingabe
Ausgabe
vercel_list_teams
Eingabe
Ausgabe
vercel_get_team
Eingabe
Ausgabe
vercel_list_team_members
Eingabe
Ausgabe
vercel_get_user
Eingabe
Ausgabe
Heute mit dem Aufbau beginnen
Über 100 000 Entwickler vertrauen uns.
Die SaaS-Plattform zum Aufbau von KI-Agenten und für Ihre agentische Belegschaft.
Loslegen