Description

n8n-nodes-neon
This is an n8n community node. It lets you use Neon Database in your n8n workflows.
Neon is a serverless PostgreSQL database that automatically scales to zero and provides instant branching. This node enables you to perform CRUD operations, execute custom SQL queries, and integrate Neon databases directly into your n8n automation workflows.
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.
Quick Installation:
- In your n8n instance, go to Settings > Community Nodes
- Click "Install a community node"
- Enter:
n8n-nodes-neon - Click Install
Operations
The Neon node provides comprehensive database operations:
Core CRUD Operations
- INSERT – Insert new records with auto-mapping or manual column mapping
- SELECT – Query data with filtering, sorting, and column selection
- UPDATE – Update existing records with multi-column matching
- DELETE – Delete records, truncate tables, or drop tables entirely
Advanced Features
- Execute Query – Run custom SQL queries with parameter binding
- Schema Introspection – Automatic discovery of schemas, tables, and columns
- Parameterized Queries – Secure SQL execution preventing injection attacks
- Execution Modes – Single, Transaction, and Independent execution strategies
Installation
Follow the installation guide in the n8n community nodes documentation.
Operations
Create, Read, Update, Delete operations for database rows, plus custom SQL query execution with parameter binding. The node also provides dynamic schema introspection for automatic table and column discovery.
Credentials
To use this node, you need a Neon database account and connection details.
Prerequisites:
- Sign up for a Neon account
- Create a new project and database
- Note your connection details
Required connection parameters:
- Host – Your Neon database host (e.g.,
ep-xxx-pooler.region.aws.neon.tech) - Port – Database port (default: 5432)
- Database – Database name
- Username – Database username
- Password – Database password
- SSL – SSL mode (required for Neon)
The node enforces SSL connections for security and uses parameter binding to prevent SQL injection.
Compatibility
- Minimum n8n version: 1.0.0
- Tested with: n8n 1.104.2 (Self Hosted)
- Node.js: 20+ (required by n8n)
- Database: Neon PostgreSQL (compatible with PostgreSQL 15+)
Usage
Add the Neon node to your workflow, configure your database credentials using the "Test Connection" button, and select your operation. The node automatically discovers your database schema and provides dynamic table and column selection.
For custom SQL queries, use the "Execute Query" operation with parameter binding:
SELECT * FROM users WHERE active = true
INSERT INTO logs (message, timestamp) VALUES ($1, $2)
UPDATE products SET price = $1 WHERE id = $2
Resources
- n8n community nodes documentation
- Neon Database documentation
- PostgreSQL documentation
- n8n Postgres node reference
Version history
v1.0.0 – Initial release with basic CRUD operations, custom SQL queries, and schema introspection.