Package Information
Released: 11/24/2025
Downloads: 1,029 weekly / 1,029 monthly
Latest Version: 0.6.2
Available Nodes
Documentation
n8n-nodes-vercel
This is an n8n community node for deploying static HTML sites to Vercel.
Vercel is a cloud platform for static sites and serverless functions that enables developers to deploy web applications with zero configuration.
n8n is a fair-code licensed workflow automation platform.
Installation
Operations
Credentials
Compatibility
Usage
Resources
Version history
Installation
Follow the installation guide in the n8n community nodes documentation.
In your n8n instance, go to Settings → Community Nodes → Install and enter:
n8n-nodes-vercel
Or install via npm:
npm install n8n-nodes-vercel
Operations
Deployment
- Create: Deploy a static HTML site to Vercel
- Supports blocking mode (wait for completion) or async mode (return immediately)
- Automatically creates or reuses projects
- Optional project protection disabling
- Get: Query deployment status by deployment ID
Credentials
This node requires a Vercel API token:
- Go to Vercel Account Settings
- Create a new token
- Enter the token in the node credentials
- (Optional) Enter your Team ID if deploying to a team account
Compatibility
- Minimum n8n version: 1.0.0
- Tested with: n8n 1.0.0+
Usage
Basic Deployment
- Add the Vercel node to your workflow
- Configure credentials with your Vercel API token
- Select Deployment → Create
- Enter your HTML content (or file path)
- Optionally specify a project name (if not provided, a new project will be created)
- Choose deployment mode:
- Blocking: Wait for deployment to complete (default)
- Async: Return immediately with deployment ID
- Configure other options:
- Deploy to Production: Whether to deploy to production environment
- Disable Project Protection: Disable SSO and password protection (default: enabled)
- Max Wait Time: Maximum time to wait for deployment completion (blocking mode only)
Query Deployment Status
- Select Deployment → Get
- Enter the deployment ID
- The node will return the current deployment status
Deployment Modes
- Blocking Mode (default): The node waits for the deployment to complete (success or failure) before returning. This is useful when you need to know the final status immediately.
- Async Mode: The node returns immediately with a deployment ID. You can use the Get operation to query the status later.
Project Management
- If you provide a Project Name, the node will:
- Look for an existing project with that name
- If found, deploy to that project
- If not found, create a new project with that name
- If you don't provide a Project Name, the node will:
- Create a new project with the name
n8n-{timestamp}
- Create a new project with the name
Resources
Version history
0.6.1
- Changed default deployment mode to blocking
0.6.0
- Integrated disable project protection into deployment configuration
- Made project name optional
- Fixed project ID handling
0.5.1
- Fixed missing
namefield in deployment request
0.5.0
- Added deployment status query operation
- Added blocking and async deployment modes
- Improved error handling
0.4.1
- Fixed file content encoding (plain text instead of base64)
0.4.0
- Removed vercel.json requirement
- Fixed deployment file format
0.3.1
- Initial release with basic deployment functionality