How to search community n8n nodes by resource or operation?

I usually end up going through a bunch of n8n-nodes-* (and my use case) packages on npm whenever I need something specific.

Open npm → click a few packages → check GitHub → see what operations it supports → repeat.

Feels a bit manual.

Is this just how everyone does it, or am I missing a better way?

2 Likes

Hi @Rishabh_Dugar

n8n actually has a proper directory for this now. just go to n8n.io/integrations and check the community nodes filter. it pulls the package info and usually lists the operations right on the page so you don’t have to dig through github repos one by one.

you can also just search directly inside your n8n workspace under settings > community nodes. it hooks straight into npm and shows the readme right there. way less clicking around.

For unverified nodes , that is what i do as well , @A_A4 , can we search these nodes as well?

@Rishabh_Dugar

more ways ways to discover community nodes:

  1. Search in the n8n editor — Open the Nodes panel, search by name. Verified nodes (:shield:) appear under “More from the community” and can be installed with one click. Requires n8n v1.94.0+. [Verified nodes]

  2. npm keyword search — Go to npmjs.com/search?q=keywords:n8n-community-node-package to see all community nodes at once. [Community nodes]

  3. Node details endpoint (self-hosted) — https://<your-instance>/types/nodes.json for programmatic exploration. [Node API]

No, you cannot search for unverified community nodes from within the n8n editor. The in-editor discovery only works for verified nodes.

For unverified nodes, the npm keyword search remains the best approach:

Correction : “npmjs.com/search?q=keywords:n8n-community-node” remove “-“ , i wish we could search for operation within a node easily

1 Like

@Rishabh_Dugar there are better ways to discover n8n nodes and their capabilities:

  1. n8n’s built-in node browser (easiest):
  • In the n8n editor, click the “+” button to add a node

  • Use the search bar to find nodes by service name or use case

  • Each node shows a description and available operations right in the UI

  • This is the fastest way since you can see exactly what’s available in your n8n version

2. Official n8n integrations page:

  • Visit: https://n8n.io/integrations

  • Browse 400+ pre-built integrations

  • Filter by category (CRM, Marketing, Database, etc.)

  • Click any integration to see supported operations and example workflows

  • Much cleaner than hunting through npm

n8n Community Nodes:

  • In n8n UI: Settings → Community Nodes

  • Browse and install community-built nodes directly

  • See ratings, downloads, and descriptions

  • Install with one click

4. n8n documentation:

  • Node types | n8n Docs

  • Comprehensive list of all built-in nodes

  • Detailed operation descriptions and examples

  • Better organized than npm package pages

What kind of integrations are you usually looking for @Rishabh_Dugar ?

1 Like

unverified nodes search , community nodes,

I might try building a small explorer that indexes all n8n-community-node-package modules, parses their README / node definitions, and makes them searchable by operations & use case.

Will share it here if I put something useful together :+1:

1 Like

@Rishabh_Dugar @A_A4

I was able to scrape through almost all community nodes, clean them up like empty resources and have built this.

Lets go! ,

3 Likes