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

v0.2.2

Published

n8n community node for Zooid — publish events to Zooid pub/sub channels

Readme

n8n-nodes-zooid

n8n community node for Zooid — connect any SaaS trigger to AI agents via pub/sub channels.

Zooid is an open-source pub/sub server for AI agents. SaaS events go in via n8n, agents subscribe and react. This node handles the publishing side. Get started at zooid.dev and install the CLI with zooid.

n8n is a fair-code licensed workflow automation platform.

Installation | Credentials | Operations | Schema-Aware Publishing | Examples | Resources

Installation

In the n8n UI: Settings > Community Nodes > Install > enter n8n-nodes-zooid.

Or follow the community nodes installation guide.

Credentials

  1. Add a Zooid API credential in n8n.
  2. Server URL — your Zooid instance (e.g. https://your-instance.workers.dev).
  3. Token — a publish or admin JWT.

The test button pings /.well-known/zooid.json to verify the server is reachable.

Getting a token


# Deploy zooid to Cloudflare (if you haven't yet)
npx zooid init
npx zooid deploy

# Create a channel — returns publish + subscribe tokens
npx zooid channel create my-channel --public --name "My Channel"

# Or create a publish token for existing channel(s)
npx zooid token publish my-channel --name "n8n"

An admin token lets the node load channel and event type dropdowns. A publish token is channel-scoped — use it for least-privilege setups.

Operations

Event > Publish

Publish a JSON event to a Zooid channel.

| Field | Description | |-------|-------------| | Channel | Select from a dropdown (loaded from the server) or type an ID manually. | | Event Type | Select from the channel's schema types, or type a custom string. | | Input Mode | Choose between Form Fields (schema-generated) or Raw JSON. | | Event Fields | Auto-generated form fields when the channel has a schema. | | Event Data | Raw JSON editor (max 64KB) for schemaless channels or complex nested data. |

Channel > Get Many

List all channels on the Zooid server. Returns channel ID, name, description, event count, schema, and strict mode status.

Schema-Aware Publishing

Zooid channels can define JSON schemas per event type. When a channel has a schema, this node generates form fields automatically:

  1. Select a channel — the dropdown loads channels from your server.
  2. Pick an event type — types are loaded from the channel's schema keys (e.g. alert, metric, task-created).
  3. Fill in form fields — fields are generated with correct types (string, number, boolean, date), required markers, and defaults.
  4. Strict enforcement — channels with strict: true reject events that don't match the schema. The node shows a notice when this is active.

For channels without schemas, switch to Raw JSON mode and paste or build the payload with n8n expressions.

Schema structure

Zooid schemas map event types to JSON Schema definitions:

{
  "alert": {
    "type": "object",
    "required": ["level", "message"],
    "properties": {
      "level": { "type": "string", "enum": ["info", "warning", "critical"] },
      "message": { "type": "string" }
    }
  },
  "metric": {
    "type": "object",
    "properties": {
      "name": { "type": "string" },
      "value": { "type": "number" }
    }
  }
}

Each key becomes a selectable event type in the node's dropdown.

Examples

SaaS trigger to AI agent

The two-line demo — wire any SaaS event to an AI agent:

n8n:  [ClickUp Trigger] → [Zooid: Publish Event] → done
npx zooid tail -f clickup-tasks | claude -p "Review this task and post a summary"

Fan-out to multiple agents

Publish once, multiple agents subscribe independently:

n8n:  [GitHub Trigger] → [Zooid: Publish to "github-events"]
# Agent 1: Security reviewer
npx zooid tail -f github-events --type pr-opened | claude -p "Review for security issues"

# Agent 2: Changelog writer
npx zooid tail -f github-events --type release | claude -p "Write a changelog entry"

# Agent 3: Slack notifier (another n8n workflow subscribing to the same channel)

Manual testing

  1. Add a Manual Trigger node.
  2. Connect a Zooid node, select your channel.
  3. Set input mode to Raw JSON, enter {"hello": "world"}.
  4. Click Test Workflow.
  5. Verify with npx zooid tail your-channel --limit 1.

Compatibility

Tested with n8n 1.71+.

Development

# Install dependencies
pnpm install

# Start n8n with the node loaded (hot-reload)
pnpm run dev

# Build
pnpm run build

# Lint (n8n-specific rules)
pnpm run lint

Resources