You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps/docs/content/docs/en/tools/vercel.mdx
+241-6Lines changed: 241 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,16 +11,16 @@ import { BlockInfoCard } from "@/components/ui/block-info-card"
11
11
/>
12
12
13
13
{/* MANUAL-CONTENT-START:intro */}
14
-
[Vercel](https://vercel.com/)is a platform for developing, previewing, and shipping modern frontend applications, APIs, and Jamstack sites with ease. A Jamstack site is a web application built using JavaScript, APIs, and Markup—designed to serve pre-rendered static files, leverage dynamic backend services via APIs, and provide fast, secure, and scalable user experiences.
14
+
[Vercel](https://vercel.com/)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.
15
15
16
16
With Vercel, you can:
17
17
18
-
-**Automate deployments**: Instantly deploy static sites and serverless functions for your front-end projects with zero configuration
19
-
-**Manage projects and teams**: Organize deployments, domains, environment variables, and more across multiple projects and teams
20
-
-**Control environments and domains**: Manage production, preview, and development environments and seamlessly handle custom domains and DNS settings
21
-
-**Monitor and debug**: Observe deployment status, review build logs, and inspect environment settings and configuration in real time
18
+
-**Automate deployments**: Deploy from Git and manage preview and production releases with minimal operational overhead
19
+
-**Manage projects and teams**: Organize projects, team access, and settings across multiple environments
20
+
-**Control infrastructure settings**: Configure domains, DNS, aliases, environment variables, and edge settings in one place
21
+
-**Monitor and troubleshoot**: Track deployment status, inspect logs, and debug build or runtime issues
22
22
23
-
In Sim, the Vercel integration enables your agents to programmatically manage deployments, projects, domains, DNS records, aliases, environment variables, edge configs, and teams directly from your workflows. Agents can automate the deployment process, access environment data, monitor build statuses, and perform infrastructure changes in response to triggers or as part of intelligent workflow automation. Combine Vercel's infrastructure automation with Sim's workflow capabilities to create modern, fully automated DevOps and product development pipelines.
23
+
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.
24
24
{/* MANUAL-CONTENT-END */}
25
25
26
26
@@ -1006,6 +1006,241 @@ Create, update, upsert, or delete items in an Edge Config store
1006
1006
| --------- | ---- | ----------- |
1007
1007
|`status`| string | Operation status |
1008
1008
1009
+
### `vercel_list_webhooks`
1010
+
1011
+
List webhooks for a Vercel project or team
1012
+
1013
+
#### Input
1014
+
1015
+
| Parameter | Type | Required | Description |
1016
+
| --------- | ---- | -------- | ----------- |
1017
+
|`apiKey`| string | Yes | Vercel Access Token |
1018
+
|`projectId`| string | No | Filter webhooks by project ID |
1019
+
|`teamId`| string | No | Team ID to scope the request |
1020
+
1021
+
#### Output
1022
+
1023
+
| Parameter | Type | Description |
1024
+
| --------- | ---- | ----------- |
1025
+
|`webhooks`| array | List of webhooks |
1026
+
| ↳ `id`| string | Webhook ID |
1027
+
| ↳ `url`| string | Webhook URL |
1028
+
| ↳ `events`| array | Events the webhook listens to |
0 commit comments