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

v0.2.0

Published

n8n community nodes for AgiMate Platform — triggers, connectors and mobile/desktop device control

Readme

n8n-nodes-agimate

This is an n8n community node for the Agimate platform. It lets you integrate Agimate connectors, mobile devices, and event triggers into your n8n workflows.

Agimate is a platform for managing and automating IoT devices, mobile applications, and third-party service integrations.

n8n is a fair-code licensed workflow automation platform.

Installation Nodes Credentials Compatibility Usage Resources Version history

Installation

Follow the installation guide in the n8n community nodes documentation.

Nodes

This package includes three nodes:

Agimate Connectors

Executes actions through connectors registered on the Agimate platform.

Parameters:

  • Connector - Select a connector from your Agimate account
  • Connector Credentials - Select credentials for the connector
  • Method - Select a method to execute
  • Request Body - JSON request body for the method (optional)

Agimate Device

Executes actions on mobile devices registered with Agimate.

Parameters:

  • Device - Select a device from your Agimate account
  • Method - Select an action to execute on the device
  • Request Body - JSON request body for the action (optional)

Agimate Trigger

Receives webhook events from the Agimate platform. This is a trigger node that starts workflows when events occur.

Parameters:

  • Event Types - Filter by event types (default: * for all events)
  • Authentication - header (validate Authorization header) or none
  • Include Headers - Include HTTP headers in output data
  • Include Query Parameters - Include query parameters in output data

Supported Event Types:

  • mobile.trigger - Events triggered on mobile devices
  • connector.event - Events from connectors
  • credential.updated - Credential update events
  • device.action - Device action events

Note: After activating the workflow, copy the webhook URL and register it on the Agimate platform.

Credentials

Agimate API

To use these nodes, you need to configure Agimate API credentials:

  1. In n8n, go to Credentials > New Credential
  2. Search for "Agimate API"
  3. Configure the following fields:
    • API URL - Base URL of the Agimate API (default: https://api.agimate.io)
    • API Key - Your Agimate API key

The API key is sent in the X-API-Key header for all API requests.

Compatibility

Tested with n8n version 1.x. Requires n8n-workflow package.

Usage

Example: Execute device action

  1. Add Agimate Device node to your workflow
  2. Configure credentials
  3. Select your device
  4. Choose an action (e.g., vibrate)
  5. Set request body: {"duration": 500}

Example: React to mobile triggers

  1. Add Agimate Trigger node
  2. Set event type to mobile.trigger
  3. Activate workflow and copy webhook URL
  4. Register webhook URL in Agimate platform
  5. Add processing nodes after the trigger

Example: Use connector actions

  1. Add Agimate Connectors node
  2. Select connector and credentials
  3. Choose method to execute
  4. Configure request body if needed

Resources

Version history

0.1.0

  • Initial release
  • Agimate Connectors node
  • Agimate Device node
  • Agimate Trigger node