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-collabaiagent

v1.0.9

Published

n8n node for Collabai Agent integration.

Readme

CollabaiAgentNode for n8n

What is CollabaiAgentNode?

CollabaiAgentNode is a custom integration node for n8n, the popular open-source workflow automation tool. This node allows you to connect and interact with the Collab.AI Agent platform, enabling powerful automation and integration scenarios within your n8n workflows.

Features

  • Seamless integration with Collab.AI Agent APIs
  • Custom credential support
  • Easy to use in any n8n workflow

Installation

  1. Install via npm On your n8n server (where n8n is installed), run: cd ~/.n8n npm install n8n-nodes-collabaiagent

    Note: If you are using Docker, see the Docker section below.

  2. Restart n8n After installation, restart your n8n instance to load the new node.

    • If running as a service: systemctl restart n8n
    • If running in a terminal: pkill -f n8n n8n start
    • If using Docker: docker restart

Usage

  1. Open the n8n Editor UI.
  2. Create a new workflow.
  3. Search for "CollabaiAgent" in the node list.
  4. Drag the CollabaiAgentNode into your workflow.
  5. Configure the node:
    • Set up your Collab.AI credentials (you may need to add them in the credentials section).
    • Fill in the required parameters for your use case.
  6. Connect the node to your workflow and activate as needed.

Example Workflow

A simple example of how you might use the node in a workflow:

Webhook Trigger → CollabaiAgentNode → Set → Respond

  • Webhook Trigger: Triggers the workflow via webhook.
  • CollabaiAgentNode: Interacts with Collab.AI.
  • Set: Processes the response.
  • Respond: Returns or uses the result.

Docker Users

If you are running n8n in Docker, you can install the node by extending the official image:

Dockerfile: FROM n8nio/n8n

Install the custom node

RUN npm install n8n-nodes-collabaiagent

Then build and run your custom image.

Custom Extensions Folder (Alternative)

If you prefer, you can copy the built node files into a custom directory and set the following in your .env:

N8N_CUSTOM_EXTENSIONS=./custom

Place the node files in custom/CollabaiAgentNode/ and credentials in custom/CollabaiAgentNode/credentials/.

Notes

  • This node is not yet listed in the official n8n Community Nodes directory. You must install it manually as described above.
  • For help with credentials or advanced configuration, see the node’s documentation in the n8n UI after installation.

Support

For issues or feature requests, please open an issue on the GitHub repository: https://github.com/sjinnovation/n8n

License

MIT