Loading...
Loading...
Vercel integration. Manage Projects, Users, Teams, Secrets. Use when the user wants to interact with Vercel data.
npx skill4agent add membranedev/application-skills vercelmembranenpm install -g @membranehq/climembrane login --tenantmembrane login complete <code>membrane search vercel --elementType=connector --jsonoutput.items[0].element?.idmembrane connect --connectorId=CONNECTOR_ID --jsonmembrane connection list --jsonconnectionIdmembrane action list --intent=QUERY --connectionId=CONNECTION_ID --json| Name | Key | Description |
|---|---|---|
| List Deployments | list-deployments | List deployments under the authenticated user or team |
| List Projects | list-projects | Retrieve a list of projects from your Vercel account |
| List Domains | list-domains | List all domains registered with Vercel |
| List Teams | list-teams | List all teams the authenticated user is a member of |
| List Environment Variables | list-env-vars | List all environment variables for a project |
| List DNS Records | list-dns-records | List DNS records for a domain |
| Get Deployment | get-deployment | Get a deployment by ID or URL |
| Get Project | get-project | Find a project by ID or name |
| Get Domain | get-domain | Get information for a single domain |
| Get Environment Variable | get-env-var | Get the decrypted value of an environment variable |
| Create Deployment | create-deployment | Create a new deployment from a Git repository or existing deployment |
| Create Project | create-project | Create a new project in Vercel |
| Create Environment Variable | create-env-var | Create an environment variable for a project |
| Create DNS Record | create-dns-record | Create a DNS record for a domain |
| Create Team | create-team | Create a new team |
| Update Project | update-project | Update an existing project's settings |
| Update Environment Variable | update-env-var | Update an existing environment variable |
| Add Domain | add-domain | Add a domain to the Vercel platform |
| Delete Deployment | cancel-deployment | Cancel a deployment which is currently building |
| Delete Project | delete-project | Delete a project by ID or name |
membrane action run --connectionId=CONNECTION_ID ACTION_ID --jsonmembrane action run --connectionId=CONNECTION_ID ACTION_ID --json --input "{ \"key\": \"value\" }"membrane request CONNECTION_ID /path/to/endpoint| Flag | Description |
|---|---|
| HTTP method (GET, POST, PUT, PATCH, DELETE). Defaults to GET |
| Add a request header (repeatable), e.g. |
| Request body (string) |
| Shorthand to send a JSON body and set |
| Send the body as-is without any processing |
| Query-string parameter (repeatable), e.g. |
| Path parameter (repeatable), e.g. |
membrane action list --intent=QUERY