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

v0.1.7

Published

n8n community node integrating the Clipboard Genie Windows desktop app — send clipboard items and desktop notifications from your workflows.

Downloads

43

Readme

n8n-nodes-clipboardgenie

This is an n8n community node. It allows you to connect Clipboard Genie with your n8n workflows.

Clipboard Genie is a modern Windows clipboard manager with pinboards, advanced search, and desktop notifications. With this node, you can send text items directly to the app or trigger desktop notifications from your workflows.

This is a community-contributed node. It is not affiliated with or maintained by n8n GmbH.


Installation

Follow the community node installation guide.

# Inside your n8n instance
npm install n8n-nodes-clipboardgenie

After installation, restart n8n to load the new node.


Operations

This node provides two resources:

🗂️ Resource: Item

Operation: Create Text Item

Creates a new text item in your Clipboard Genie desktop app. You can choose the pinboard where the item will appear, optionally show it on the main board, and display a system notification.

Parameters

| Name | Type | Required | Default | Description | | ------------------------------------ | ------- | ----------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | Pinboard Name | String | ✅ Yes | "" | Specify the pinboard name where the item will be added. | | Show on Main Board | Boolean | No | false | Also display the item on your main board. | | Text to Send | String | ✅ Yes | "" | The text content of the new item. | | Open Link or Path | String | No | "" | Optional URL, file path, or command associated with the item. When provided, a button in the app will open it directly.Supported formats: https://example.com, file:///Users/name/file.pdf, file://app.name --param value.For Windows paths with spaces, wrap them in quotes, e.g. "C:\\Program Files\\App\\app.exe" "--flag value". | | Show System Notification | Boolean | No | true | Display a desktop notification when the item is received. | | Notification Title | String | Conditional | "" | Optional title displayed in the notification (only shown if notifications are enabled). | | Notification Message | String | Conditional | "" | Optional body text for the notification. | | Close Notification Automatically | Boolean | Conditional | false | Automatically close the notification after a short delay. |


🔔 Resource: Notification

Operation: Show

Displays a native desktop notification with an optional title, message, and “Open” button.

Parameters

| Name | Type | Required | Default | Description | | ------------------------ | ------- | -------- | ------- | --------------------------------------------------------------------------------------- | | Notification Title | String | No | "" | Optional title. If not set, a default title will appear. | | Notification Message | String | ✅ Yes | "" | Main content of the notification. | | Open Link or Path | String | No | "" | Optional URL, file path, or app command. When provided, a button will open it directly. | | Auto Close | Boolean | No | false | Automatically close the notification after a short delay. |


Credentials

🔑 API Key Authentication

Clipboard Genie uses API key authentication for all n8n integrations.

  1. In the Clipboard Genie desktop app, go to Settings → Extensions → n8n

  2. Click Generate API Key.

  3. Copy the generated key and paste it into the API Key field in your n8n credentials for Clipboard Genie.

  4. The node will automatically send it using:

    Authorization: Bearer <API_KEY>

Compatibility

  • n8n version: ≥ 1.x (supports community nodes)
  • Clipboard Genie: latest desktop version with n8n extension
  • Platform: Windows desktop (notifications and pinboards handled by the app)

Usage

▶️ Example 1: Create a Text Item

  1. Add a new node: Clipboard Genie → Item → Create Text Item

  2. Fill in the required fields:

    • Pinboard Name
    • Text to Send
  3. (Optional) Enable Show System Notification to alert the user when the item is added.

  4. Execute the workflow. The text will appear in the selected pinboard in Clipboard Genie desktop application.


▶️ Example 2: Show a Desktop Notification

  1. Add a node: Clipboard Genie → Notification → Show

  2. Provide a Notification Message (required).

  3. Optionally set:

    • Notification Title
    • Open Link or Path
    • Auto Close
  4. Run the workflow. The user will receive a native desktop notification with the specified content and actions.


Resources


Version history

| Version | Changes | | --------- | --------------------------------------------------------------------------------------------------- | | 0.1.6 | Fix: optional parameters (internal version, never published to npm) | | 0.1.0 | Initial release with two operations:– Item → Create Text Item– Notification → Show |