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

v1.3.6

Published

An n8n node to connect to the Tactical RMM API

Readme

@redanthrax/n8n-nodes-tacticalrmm

An n8n community node for integrating with the Tactical RMM API.

Tactical RMM is a remote monitoring and management tool, built with Django and Vue.

Development

This repo uses pnpm with a committed lockfile and supply-chain controls in pnpm-workspace.yaml (see SECURITY.md). After clone:

corepack enable && corepack prepare [email protected] --activate
pnpm install --frozen-lockfile
pnpm run audit:supply-chain
pnpm run build

Use pnpm only for installs in this repo. With Corepack enabled, npm install and yarn install are rejected. Do not commit package-lock.json or yarn.lock (see SECURITY.md).

API spec and catalog

The OpenAPI spec lives at docs/swagger.yaml. Regenerate the endpoint catalog:

pnpm run generate

See docs/api-catalog.md for every automation-facing endpoint. Use the Custom API resource for endpoints not covered by curated operations.

Live preview with n8n-node dev

n8n-node dev

Requires Node.js 22.22.3+.

Installation

Follow the installation guide in the n8n community nodes documentation.

npm install @redanthrax/n8n-nodes-tacticalrmm

Prerequisites

  • Tactical RMM instance with API access
  • Your Tactical RMM base URL (e.g. https://api.example.com)
  • A dedicated integration user, integration role, and API key (see setup below)

Setup

API access in Tactical RMM (recommended)

Do not reuse a personal admin account for n8n. Create a dedicated integration setup with least privilege:

  1. Integration role — In Tactical RMM, create a role scoped only to the clients, sites, and actions your workflows need (read-only where possible).
  2. Integration user — Create a service/integration user account and assign only that role.
  3. API key — In Settings → Global Settings → API Keys, create a key for the integration user (not a day-to-day admin account).

Rotate or revoke the API key if the n8n credential is exposed. Tighten the role if you add workflows later.

Configuring credentials in n8n

| Field | Example | Notes | |-------|---------|-------| | Base API URL | https://api.example.com | Your Tactical RMM server URL | | API Key | (from API Keys settings) | Key for the integration user; sent as X-API-KEY |

Supported operations

129+ operations across 20 resources (including Custom API for any path in the OpenAPI spec):

Resource groups

| Group | Resources | |-------|-----------| | Agents | Agent, Check, Service, Software, Task, Windows Update | | Organization | Client, Site, Deployment | | Monitoring | Alert, Alert Template | | Automation | Automation Policy, Script | | Administration | API Key, Core, Log, Role, User | | Reporting | Reporting | | Advanced | Custom API |

Curated resources

Custom API

Call any documented REST endpoint (method, path, query, body). Full path list: docs/api-catalog.md.

Resources

Compatibility

  • n8n 0.199.0+
  • Tactical RMM 0.15.2+ (OpenAPI spec version 1.4.0 in docs/swagger.yaml)

License

MIT