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

@maxim_chu/n8n-nodes-clay

v3.1.0

Published

n8n node for Clay

Readme

n8n-nodes-clay

Community n8n node package that adds the Clay node.

What this node does

The Clay node fans out one request per incoming item to a selected Clay URL and waits for all callbacks before resuming workflow execution.

At execution time it:

  1. Reads all input items.
  2. Sends a POST request for each item to the selected request URL.
  • Requests are dispatched with bounded concurrency.
  1. Injects a callback URL into each outbound payload.
  2. Waits until all callback parts are received.
  3. Returns callback payloads in part order.

Node behavior

  • Node name in n8n UI: Clay
  • Operation model: send-and-wait-many (fan-out + webhook resume)
  • Input: any number of items
  • Output: one item per callback payload

Parameters

  • Request URL Name or ID: Selects a URL from the Clay Tables data table.
  • Field Values: Auto-generated inputs from the selected row's fields column.
  • Options:
    • Callback Field Name: Field name used to pass resume URL (default: resume_url).
    • Max Concurrency: Maximum number of outbound requests running at the same time (default: 5).
    • Max Wait Minutes: Max wait before timeout (default: 30).

Clay Tables schema

The Clay Tables n8n data table now uses these columns:

  • name: Friendly name shown in the node selector.
  • url: Target enrichment webhook URL.
  • fields: Comma-separated list of input fields to send to Clay (for example company_domain, company_name).

At runtime, the node reads the selected table row and builds a strict outbound payload shape:

  • data: Object containing configured fields from Clay Tables.
  • resume_url (or your configured callback field name): callback URL for Clay.

If fields is empty, null, or undefined, no field inputs are generated and the node falls back to sending the full input item JSON in data.

Important limitation

Execution state is currently stored in process memory. This is reliable for single-process deployments. For clustered or multi-instance setups, use an external state store (for example Redis).

Development

Prerequisites

  • Node.js 22+
  • npm

Install

npm install

Build

npm run build

Build in watch mode

npm run build:watch

Lint

npm run lint

Package metadata

  • npm package: @maxim_chu/n8n-nodes-clay
  • license: MIT