npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

n8n-nodes-cloudbeaver

v0.4.1

Published

n8n node for CloudBeaver — execute SQL queries via CloudBeaver API

Readme

n8n-nodes-cloudbeaver

This is an n8n community node for CloudBeaver - a web-based database management tool. It lets you interact with any database connected to your CloudBeaver server directly from n8n workflows.

n8n is a fair-code licensed workflow automation platform.

Installation

Follow the installation guide in the n8n community nodes documentation.

Operations

  • Execute SQL Query - run any SQL query with support for limit, offset, ORDER BY, and WHERE filters
  • Select Rows - retrieve rows from a table with optional WHERE, ORDER BY, limit, and offset
  • Insert Rows - insert a new row by specifying column/value pairs
  • Update Rows - update rows by specifying column/value pairs and a WHERE condition
  • Delete - delete rows (with optional WHERE), truncate, or drop a table

Note: Only connections from the Shared project in CloudBeaver are supported.

Credentials

Create a CloudBeaver API credential with:

| Field | Description | |---------------------|------------------------------------------------------------------------------------------------------------------------------| | Server URL | Base URL of your CloudBeaver server, e.g. https://cloudbeaver.example.com | | Authentication Type | API Token (for Enterprise or AWS Edition only) or Local access (Username/Password) | | API Token | Token generated by Admin in CloudBeaver - how to generate | | Username / Password | Local Access credentials - docs |

Compatibility

Requires n8n 1.0.0 or later. Designed for self-hosted CloudBeaver instances (Community, Enterprise or AWS Edition).

Usage

Finding the Connection ID

Right-click a database in CloudBeaver's Database Navigator -> Open -> copy the ID from the connection window (e.g. postgres-jdbc-19d5ca3a223-2f46e1a321049b15).

Default Database

The Default Database field lets you specify which database or catalog to use when executing SQL. Leave it empty to use the connection's default. Useful when a single CloudBeaver connection has access to multiple databases and you want to target a specific one.

Database Type

The Database Type field (Select, Insert, Update, Delete operations) controls identifier quoting style:

| Database Type | Use for | |---------------|------------------------------------------------------------------------------| | PostgreSQL | PostgreSQL, SQLite, Oracle, Redshift, Greenplum and other ANSI SQL databases | | MySQL | MySQL, MariaDB, TiDB | | SQL Server | SQL Server, Azure SQL, Sybase |

For databases not listed, PostgreSQL is a safe default - ANSI double-quote quoting works with most SQL databases.

Execute SQL Query

The Where and Order By fields are applied on top of your SQL query:

SQL Query:

SELECT id, name, email
FROM users

Where: status = 'active'
Order By: created_at DESC
Limit: 50

Executes as:

SELECT *
FROM (SELECT id, name, email FROM users) AS _q
WHERE status = 'active'
ORDER BY created_at DESC LIMIT 50

Insert / Update value types

Insert and Update operations let you choose how each value is formatted in the generated SQL query.

| Value type | SQL output example | |------------|--------------------| | String | 'Alice' | | Number | 42 | | Boolean | TRUE | | Null | NULL | | Raw SQL | NOW() |

Use Raw SQL for database-specific expressions, casts, functions, or complex values, such as NOW(), CAST('42' AS INTEGER), or '{"a":1}'::jsonb.

Warning: Use Raw SQL only with trusted values. Raw SQL is inserted into the query without escaping.

Getting Started (Local Testing)

  1. Start CloudBeaver:

    docker run -d -p 8978:8978 dbeaver/cloudbeaver:latest

    Or follow the full installation guide.

  2. Configure authentication - follow the Local Access Authentication guide. Create a user (login/password) or use admin credentials.

  3. Create a database connection - follow the Create Connection guide.

  4. Get the Connection ID - open Database Navigator, right-click a database -> Open, and copy the connection ID from the opened window.

  5. In n8n:

    • Create CloudBeaver credentials (Local auth: login/password)
    • Add the CloudBeaver node to your workflow
    • Set the Connection ID
    • Choose an operation and configure its fields
    • Execute the node

Resources