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

v0.2.5

Published

Private n8n community node package for LinderConnect curated API operations.

Readme

n8n-nodes-linderconnect

Private n8n community node package exposing the Core ERD admin allowlist. All operations use the public/admin API and send X-LC-Engine: n8n for audit.

Supported resources/operations

  • org
    • listGET /api/admin/orgs
    • createPOST /api/admin/orgs
  • location
    • listGET /api/admin/locations
    • getGET /api/admin/locations/:id
    • createPOST /api/admin/locations (now accepts context, industry/template/prompt IDs)
    • upsert → create-or-update by org+slug/name; applies context/industry/template/prompt/status
    • updateContextPATCH /api/admin/locations/:id (context/industry/template/prompt snapshot fields/status)
  • phoneNumber
    • listGET /api/admin/phone-numbers?query=
    • mapPOST /api/admin/phone-numbers/map
    • unmapPOST /api/admin/phone-numbers/unmap
    • updatePATCH /api/admin/phone-routes/:id (provider, provider_phone_number_id, provider_assistant_id, status)
  • membership
    • addOrg / removeOrgPOST /api/admin/memberships/org/*
    • addLocation / removeLocationPOST /api/admin/memberships/location/*
  • user
    • listGET /api/admin/users
    • getGET /api/admin/users/:id
  • apiKey
    • listGET /api/admin/api-keys
    • createPOST /api/admin/api-keys (returns plaintext once)
    • revokePOST /api/admin/api-keys/:id/revoke
  • invite
    • listGET /api/admin/dashboard-invites
    • createPOST /api/admin/dashboard-invites (token in response only)
    • resendPOST /api/admin/dashboard-invites/:id/resend
  • onboarding
    • retryPOST /api/admin/onboarding/:clientId/retry
    • statusUpdatePOST /api/onboarding/submissions/:id/status

Credentials

  • Credential name: LinderConnect API
  • Fields:
    • API Key – admin-scoped API key from /api/admin/api-keys
    • Base URL – defaults to https://api.linderconnect.com
  • Authentication sent as Authorization: Bearer <key> and X-LC-Api-Key: <key>. The node also sets X-LC-Engine: n8n for auditability.

Build

corepack pnpm --filter=n8n-nodes-linderconnect build

Artifacts land in dist/ and are referenced via the n8n section in package.json.

Notes

  • All operations assume admin-level access; org/client/user scoped keys are not yet enforced.
  • Workflow/Integration-era endpoints are removed from this node to match the Core ERD allowlist.