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

@keboola/n8n-nodes-keboola

v0.1.1

Published

n8n node to interact with Keboola Storage APIs & MCP Server

Downloads

83

Readme

n8n Nodes – Keboola Integration

This is an n8n community node that integrates Keboola with your n8n workflows, so you can automate data pipelines, upload and download tables, and connect Keboola to hundreds of other services through n8n.

Keboola is a data platform for building and running data pipelines, while n8n is a fair-code licensed workflow automation tool. Together, they allow you to orchestrate data flows end-to-end with minimal effort.

Table of Contents

Installation (self-hosted)

To install the Keboola community node directly from the n8n Editor UI:

  1. Open your n8n instance.
  2. Go to Settings → Community Nodes.
  3. Select Install a community node.
  4. Enter the npm package name: @keboola/n8n-nodes-keboola
  5. Accept the community node disclaimer and confirm installation.

The Keboola node is now available in your workflows.

Installation for development and contributing

If you want to contribute to this project, you can link the node to your local n8n instance.

Prerequisites

Steps

  1. Initialize n8n locally

Install and start n8n (if not already installed):

npm install -g n8n
n8n start

This will create the ~/.n8n directory.

  1. Clone and build the node
git clone [email protected]:keboola/n8n-nodes-keboola.git # or https://github.com/keboola/n8n-nodes-keboola.git
cd n8n-nodes-keboola
npm install
npm run build
  1. Link the custom node to n8n
mkdir -p ~/.n8n/custom
ln -s /full/path/to/n8n-nodes-keboola ~/.n8n/custom/n8n-nodes-keboola
  1. Restart n8n
n8n start
  1. Making changes

If you modify the node, rebuild and restart:

npm run build
n8n start

Operations

The Keboola node currently supports three types of operations:

  • Data Export

Extracts data from a Keboola table into your n8n workflow. - Parameters: Credential, Table ID

  • Data Import

Uploads data from your workflow into a Keboola table. - Parameters: Bucket Stage, Bucket Name, Table Name, Primary Key(s), Import Mode

  • Custom API Call

For advanced use cases, you can call any Keboola Storage API endpoint directly.

Credentials

The node uses API Key authentication.

When creating a credential in n8n, select your Keboola stack region:

  • https://connection.keboola.com (Stack: AWS, Region: us-east-1)
  • https://connection.eu-central-1.keboola.com (Stack: AWS, Region: eu-central-1)
  • https://connection.north-europe.azure.keboola.com (Stack: Azure, Region: north-europe)
  • https://connection.us-east4.gcp.keboola.com (Stack: US East, Region: us-east4)

Then provide your Keboola Storage API Token (create under Project Settings → API Tokens in Keboola).

Compatibility

This node has been tested with n8n version 1.57.0 and newer.

Usage

  1. Create a new workflow in n8n.
  2. Add the Keboola node.
  3. Select an operation:
    • Data Export to pull a table.
    • Data Import to write into Keboola.
    • Custom API Call for advanced use.
  4. Configure the parameters.
  5. Connect with other nodes (e.g., Google Sheets, Slack, HTTP).
  6. Execute the workflow.

Resources

Release

This project uses GitHub Actions to publish releases to npm. To create a release:

  1. Ensure main is up to date.
  2. Bump the version in package.json according to semver.
  3. Commit and push.
  4. Create a GitHub Release with the new version tag (e.g., v0.2.0).

The CI workflow will build and test the package. The publishing is currently done manually as the policies related to company wide npm token policies has been changed.

Version History

See Releases.

Troubleshooting

  • Authentication errors: Verify your API token and stack region are correct.
  • Operation errors: Double-check bucket names, table IDs, or job IDs.
  • Node not available: Confirm the Keboola node is installed from the Community Nodes registry. Currently only self-hosted n8n is supported.

For additional help, open an issue in this repo or contact Keboola Support.