Manage Vercel projects, deployments, domains, environment variables, and team resources from chat via the Vercel REST API.
This skill uses ClawLink for hosted connection flows and credentials so you do not need to configure Vercel API access yourself.
| Step 1: Install | Step 2: Pair Account | Step 3: Connect Vercel |
|---|---|---|
| :---: | :---: | :---: |
| !Install | !Pair | App-specific connection GIF coming soon |
| Run the install command in OpenClaw | Sign in and approve the device | Open the dashboard and connect Vercel |
┌─────────────────┐ ┌──────────────┐ ┌──────────────────┐
│ OpenClaw │────▶│ ClawLink │────▶│ Vercel REST │
│ (User Chat) │ │ (OAuth) │ │ API │
└─────────────────┘ └──────────────┘ └──────────────────┘
│ │ │
│ 1. Install Plugin │ │
│ 2. Pair Device │ │
│ 3. Connect Vercel │ │
│ │ 4. Secure Token │
│ │ 5. Proxy Requests │
│ │ │
▼ ▼ ▼
┌──────────┐ ┌──────────┐ ┌──────────┐
│ SKILL │ │ Dashboard│ │ Vercel │
│ File │ │ Auth │ │ Account │
└──────────┘ └──────────┘ └──────────┘
Install the verified ClawLink plugin from ClawHub. After the user confirms, complete the full setup so ClawLink tools are visible in the next OpenClaw chat.
openclaw plugins install clawhub:clawlink-plugin
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart
Then tell the user: "OpenClaw has been restarted. Send /new as a standalone message to start a fresh chat, then ask for Vercel again."
# List projects
clawlink_call_tool --tool "vercel_list_projects" --params '{}'
# Get deployment details
clawlink_call_tool --tool "vercel_get_deployment" --params '{"deployment_id": "DEPLOYMENT_ID"}'
# List deployments
clawlink_call_tool --tool "vercel_list_deployments" --params '{"project_name": "my-project"}'
All Vercel tool calls are authenticated automatically by ClawLink using the user's connected Vercel account token.
No API token is required in chat. ClawLink stores the token securely and injects it into every Vercel API request on the user's behalf.
clawlink_begin_pairing if it is not configured yet.clawlink_list_integrations to verify the connection is active.clawlink_list_integrations
Response: Returns all connected integrations. Look for vercel in the list.
clawlink_list_tools --integration vercel
Response: Returns the live tool catalog for Vercel.
If Vercel tools are missing or the connection shows an error:
clawlink_list_integrations to verifyclawlink_list_tools --integration vercel| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
vercel_list_projects | List all projects in the account/team | Read |
vercel_get_project | Get project configuration and settings | Read |
vercel_create_project | Create a new project | Write |
vercel_update_project | Update project name, framework, or settings | Write |
vercel_delete_project | Delete a project and its deployments | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
vercel_list_deployments | List deployments with pagination and filters | Read |
vercel_get_deployment | Get deployment details including status and URLs | Read |
vercel_create_deployment | Create a new deployment | Write |
vercel_cancel_deployment | Cancel an in-progress deployment | Write |
vercel_delete_deployment | Delete a deployment | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
vercel_list_domains | List all domains in the account | Read |
vercel_get_domain | Get domain details and DNS records | Read |
vercel_add_domain | Add a domain to a project | Write |
vercel_remove_domain | Remove a domain from a project | Write |
vercel_verify_domain | Verify domain ownership | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
vercel_list_env | List environment variables for a project | Read |
vercel_add_env | Add an environment variable to a project | Write |
vercel_update_env | Update an environment variable's value or scope | Write |
vercel_delete_env | Remove an environment variable | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
vercel_list_team_members | List all members of a team | Read |
vercel_invite_team_member | Invite a new member to the team | Write |
vercel_remove_team_member | Remove a member from the team | Write |
vercel_update_team_member_role | Change a member's role | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
vercel_list_secrets | List all secrets in the account | Read |
vercel_create_secret | Create a secret for use in environment variables | Write |
vercel_delete_secret | Delete a secret | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
vercel_get_deployment_events | Get deployment event log | Read |
vercel_get_audit_logs | Get team audit logs | Read |
clawlink_call_tool --tool "vercel_list_projects" \
--params '{
"team_id": "team_id"
}'
clawlink_call_tool --tool "vercel_get_deployment" \
--params '{
"deployment_id": "dpl_1234567890"
}'
clawlink_call_tool --tool "vercel_list_deployments" \
--params '{
"project_name": "my-nextjs-app",
"limit": 10
}'
clawlink_call_tool --tool "vercel_add_env" \
--params '{
"project_name": "my-nextjs-app",
"key": "DATABASE_URL",
"value": "postgres://...",
"environment": "production"
}'
clawlink_call_tool --tool "vercel_verify_domain" \
--params '{
"domain": "example.com"
}'
clawlink_call_tool --tool "vercel_cancel_deployment" \
--params '{
"deployment_id": "dpl_1234567890"
}'
clawlink_list_integrations to confirm Vercel is connected.clawlink_list_tools --integration vercel to see the live catalog.clawlink_search_tools with a short query and integration vercel.┌─────────────────────────────────────────────────────────────┐
│ READ OPERATIONS (Safe) │
│ list → get → describe │
│ │
│ Example: List projects → Get deployments → Show status │
└─────────────────────────────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────┐
│ WRITE OPERATIONS (Require Confirmation) │
│ describe → preview → confirm → call │
│ │
│ Example: Preview env var change → User approves → Update │
└─────────────────────────────────────────────────────────────┘
clawlink_describe_tool first.whenToUse, askBefore, safeDefaults, examples, and followups to shape the call.clawlink_preview_tool first.clawlink_call_tool. Pass confirmation only after the preview matches the user's intent.dpl_ and project names are used in deployment URLs.development, preview, or production environments.vercel_get_domain.https://project.vercel.app.| Status / Error | Meaning |
|---|---|
| ---------------- | --------- |
| Tool not found | The tool name does not exist in the current catalog. Verify with clawlink_list_tools --integration vercel. |
| Missing connection | Vercel is not connected. Direct the user to https://claw-link.dev/dashboard?add=vercel. |
Project not found | The project name does not exist in the account. |
Deployment not found | The deployment ID does not exist. |
Domain not found | The domain is not registered with the account. |
Domain not verified | Domain ownership has not been verified. Add DNS records first. |
Env not found | The environment variable does not exist in the project. |
Forbidden | The account lacks permission for this operation. |
| Write rejected | User did not confirm a write action. Always confirm before executing writes. |
```bash
openclaw plugins list
```
/new as a standalone message to reload the catalog.```bash
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart
```
/new again and retry.Powered by ClawLink — an integration hub for OpenClaw
共 2 个版本