Community Node Questions: Logo Sync & Search Indexing

Hi everyone,

I have two questions regarding my recently published community node and would appreciate any clarification.

1. Logo not updating in node details

After publishing my community node, I updated several node details.
The following changes were applied successfully:

  • Author Name
  • Integration Categories
    However, the updated logo is not reflected yet.
    My question:
  • Is there a different update interval for logos compared to other metadata?
  • Or is the displayed logo tied to the one bundled within the npm package of the node?

2. Integration search behavior (keywords like “ERP”)

In the integrations section on n8n (Product → Integrations), my node appears when searching by name.
However, I noticed that some integrations (for example Odoo) can also be found using keywords like “ERP”, even though the keyword is not part of the name but appears in the description.
My node also includes “ERP” in its description, but it does not appear when searching for that keyword.
My questions:

  • How does the search indexing work for integrations?
  • Are keywords derived from the description automatically?
  • Do I need to define additional tags or metadata (e.g., beyond package.json aliases)?
  • Or is this behavior curated manually?

Information on my n8n setup

  • n8n version: (1.123.17)
  • Running n8n via: (Docker)
  • Operating system: (Windows 11)

Thanks in advance for your help!

Thank you, this helps a lot.

Hi @vt-ksteinfeld Welcome! for the logo, it’s pulled from the npm package bundle itself — so bump your package version with the new icon, npm publish, and it’ll sync on the next n8n registry crawl (can take a couple days). for the “ERP” keyword search on the integrations page, that index is curated by the n8n team — community nodes don’t get description-based keyword indexing automatically like built-in nodes do, so add "keywords": ["ERP", "enterprise"] in your package.json and it should pick it up on the next crawl

Thank you very much!