First-party app
Vercel Vercel

Vercel

Ship and inspect Vercel deployments — projects, aliases, env vars, domains and logs.

stable DevOps & InfrastructureDeveloper Tools

About

Vercel ships in the w6w first-party pack. It declares 28 actions, 2 health checks, and the host runs its code in a sandbox that never sees the credential.

App id
io.w6w.vercel
Version
0.1.1
Author
w6w
Licence
MIT
Categories
DevOps & Infrastructure · Developer Tools

Overview

Vercel deploys and hosts sites and functions, and this app ships and inspects deployments without leaving the workflow. Trigger a deployment from a Git source, watch its build logs, cancel it while it’s still building, or promote and roll back which deployment serves production traffic. Build logs and runtime logs are read separately, since one is what the build printed and the other is what the deployed functions log while serving requests.

Beyond deployments, it manages the surrounding project config: environment variables (encrypted by default, redacted unless decryption is explicitly requested), domains and the aliases that point them at a specific deployment, and project settings like framework and build command. Team scope is set once on the connection rather than repeated per action, with a per-call override for a token that spans several teams.

Good for triggering a deploy from an external event, rolling back production the moment an error rate spikes, or keeping environment variables and domains in sync as part of an infrastructure workflow — the deployment operations a developer would otherwise run from the Vercel dashboard or CLI.

Build with Vercel

Three routes to the same 28 actions. The Workflow tab is generated from Vercel's own manifest and carries its real ids, so it is copy-pasteable; the Code and CLI examples are the same call for any action on any app, so every app-specific value in them is a blank you fill in.

Assign an alias to a deployment

alias-assign

Point a domain at a deployment.

Delete an alias

alias-delete

Remove an alias, so the domain no longer points at a deployment.

Get an alias

alias-get

Retrieve one alias by its hostname or alias ID.

List aliases

alias-list

List aliases, optionally filtered by project or domain.

List a deployment's aliases

deployment-alias-list

List the aliases currently pointing at one deployment.

Cancel a deployment

deployment-cancel

Stop a deployment that is still building.

Create a deployment

deployment-create

Trigger a new deployment for a project from a Git source.

Delete a deployment

deployment-delete

Permanently remove a deployment.

List a deployment's build logs

deployment-event-list

Read the build events (logs) a deployment produced.

Get a deployment

deployment-get

Retrieve one deployment by ID or by its deployment URL.

List deployments

deployment-list

List deployments, optionally filtered by project, state, target, branch or SHA.

Promote a deployment to production

deployment-promote

Make an existing deployment the project's production deployment.

Roll back to a deployment

deployment-rollback

Roll a project's production back to an earlier deployment.

List domains

domain-list

List the domains on the connection's team or personal account.

Create an environment variable

env-create

Add an environment variable to a project.

Delete an environment variable

env-delete

Remove an environment variable from a project.

List environment variables

env-list

List a project's environment variables.

Update an environment variable

env-update

Change an existing environment variable's value, targets, or type.

Create a project

project-create

Create a new Vercel project, optionally linked to a Git repository.

Delete a project

project-delete

Permanently delete a project and all of its deployments.

Add a domain to a project

project-domain-add

Attach a domain to a project, optionally as a branch domain or a redirect.

List a project's domains

project-domain-list

List the domains attached to one project.

Get a project

project-get

Retrieve one project's settings and latest deployments.

List projects

project-list

List the projects in the connection's team or personal account.

Update a project

project-update

Change a project's name, framework, or build settings.

List a deployment's runtime logs

runtime-log-list

Read the runtime (function) logs for one deployment of a project.

List teams

team-list

List the teams this connection belongs to.

Get the authenticated user

user-get

Retrieve the account this connection authenticates as.

A workflow step names the app and the action, and the editor fills in the connection when you pick one. This is the Step shape from the workflow spec, carrying Vercel's real ids.

{
  "manifestVersion": "2",
  "name": "vercel-example",
  "steps": [
    {
      "id": "alias-assign",
      "uses": {
        "app": "io.w6w.vercel",
        "action": "alias-assign",
        "connection": "conn_YOUR_CONNECTION_ID"
      },
      "with": {
        "deploymentId": "<deploymentId>",
        "alias": "<alias>"
      }
    }
  ]
}

Here are some of the things you can do

  • Assign an alias to a deployment

    perform
    alias-assign
  • Get an alias

    read
    alias-get
  • List aliases

    read
    alias-list
  • List a deployment's aliases

    read
    deployment-alias-list
  • Create a deployment

    perform
    deployment-create

+23 more actions available

Every app-specific value here is a blank you have to fill in. An app action is reached through the connection that authenticates it, so the address is a connection id, not the app id — and connections belong to your account, so a public page cannot know yours. Create one for Vercel, then fill in the three blanks: conn_YOUR_CONNECTION_ID, the action key, and the parameters that action declares. The call itself is real — the shape is transcribed from the studio's own snippet builder, which prints the same kind of blanks — but nothing in it is specific to Vercel. The Workflow tab is where this app's real ids are.

Install
npm install @w6w/sdk
yarn add @w6w/sdk
pnpm add @w6w/sdk
deno add npm:@w6w/sdk
Code
import { W6wClient, isActionRun } from "@w6w/sdk";

// Reads W6W_BASE_URL and W6W_TOKEN from the environment when omitted.
const client = new W6wClient();

const envelope = await client.run({
  urn: "conn_YOUR_CONNECTION_ID",
  action: "alias-assign",
  payload: {
    // teamId: "<value>",
    deploymentId: "<value>",
    alias: "<value>",
    // redirect: "<value>",
  },
});

if (isActionRun(envelope)) console.log(envelope.value);
Install the CLI
npm install -g @w6w/cli
CLI
w6w run conn_YOUR_CONNECTION_ID --action alias-assign --payload '{"deploymentId":"<value>","alias":"<value>"}'

Give an AI agent Vercel — without giving it Vercel's credentials. One MCP endpoint exposes every app, function and workflow the caller is entitled to, as tools it can discover and run. Access is granted per team while we onboard.

One tool call
{
  "name": "w6w_invoke",
  "arguments": {
    "ref": "app:io.w6w.vercel#alias-assign",
    "input": {
      "deploymentId": "<deploymentId>",
      "alias": "<alias>"
    }
  }
}

Every tool names its target with a single ref. The app: form above doesn't name a connection at all — the host resolves which of the caller's Vercel connections to sign with, and refuses rather than guesses when the answer is ambiguous.

What the agent gets

Credentials it can't read

The token is attached host-side, at the moment of the call. It is never a tool argument, never in the model's context, and never in a transcript — so a prompt injection has nothing to exfiltrate.

A tool surface scoped to the caller

Tools are derived per end user from what that person has actually connected and is entitled to — not one shared bot identity carrying the union of everyone's access.

A durable workflow in one call

Multi-step work runs on the workflow engine and returns a run handle the agent can poll — retries, branching and state survive the conversation that started them.

Health-aware discovery

Vercel's declared health checks are on the surface too, so an agent can tell "the vendor is down" from "your credential expired" before it burns a retry on either.

The MCP surface is part of the hosted platform. Vercel itself is MIT, and the runtime that executes it is source-available (FSL).

Request MCP access

Health checks

Vercel declares its own checks, so its health is a property of the app rather than something the host guesses at.

service

Vercel platform status

Atlassian Statuspage rollup for www.vercel-status.com, with per-component detail. Unauthenticated and unsigned.

quota

API rate-limit headroom

Requests remaining on this credential, read off the `x-ratelimit-*` headers.