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

@gptmaker/n8n-nodes-gptmaker

v1.0.5

Published

Custom n8n node for GPTMaker API

Readme

@gptmaker/n8n-nodes-gptmaker

Community node for the GPTMaker API.

Repository: https://github.com/irrahgroup/delaware-wilmington

Features

  • Native n8n resource/operation structure
  • Bearer token authentication
  • Dynamic dropdowns for Workspace and Agent
  • Support for Workspace, Agent, Channel, Chat, Intention, Interaction, and Training resources
  • Compatible with manual execution and multi-item workflows

Supported Resources

Workspace

  • Get many workspaces
  • Get workspace credits balance

Agent

  • Create, get, update, delete, activate, inactivate
  • Conversation and context message actions
  • Get credits spent
  • Get/update settings
  • Get/update webhooks

Channel

  • Create in agent or workspace context
  • Get many by workspace
  • Update/delete channel
  • Get/update channel config

Chat

  • Get many chats by workspace
  • List messages
  • Send/edit/delete message
  • Delete chat messages
  • Delete chat
  • Start/stop human support

Intention

  • List
  • Create
  • Update
  • Delete

Interaction

  • List by workspace
  • Delete

Training

  • Create
  • Get many
  • Update (TEXT)
  • Delete

Authentication

This node uses one credential:

  • GPTMaker API
    • API Token

Token setup guide (official docs):

  • https://developer.gptmaker.ai/api-reference/introduction#autentica%C3%A7%C3%A3o

Credential setup flow in n8n:

  1. Create a new GPTMaker API credential.
  2. Paste your GPTMaker API token into API Token.
  3. Save and test the credential.

Installation

npm install @gptmaker/n8n-nodes-gptmaker

Restart n8n after installation.

Example Workflow

A sanitized workflow example is included at the project root:

  • workflow-example-gptmaker.json

Use this file as a base for Creator Portal submission and internal QA.

Publishing

Current release strategy: manual publish.

npm run lint
npm run build
npm publish --access public

Provenance-ready workflow is included for GitHub Actions:

  • .github/workflows/publish-provenance.yml

It uses npm publish --provenance --access public and requires NPM_TOKEN in repository secrets.

Development

npm run build
npm run dev
npm run lint

Project structure:

  • nodes/GptMaker/GptMaker.node.ts: main node definition
  • nodes/GptMaker/GptMakerApi.credentials.ts: credential definition
  • nodes/GptMaker/descriptions/: node fields and operations
  • nodes/GptMaker/resources/: execution logic
  • nodes/GptMaker/Helpers.ts: shared API request helper

License

MIT