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-mattermost-missing-actions

v1.0.6

Published

n8n-community-node-package for Mattermost with missing actions

Readme

n8n-nodes-mattermost-missing-actions

This is an n8n community node for Mattermost that provides missing actions not available in the standard Mattermost node. Currently, it focuses on enabling direct messaging between users.

NPM Version License

Features

  • Send direct messages from one Mattermost user to another
  • Works with personal access tokens for authentication
  • Supports both user-to-user and bot-to-user messaging

Installation

Using n8n UI (Recommended)

  1. Go to your n8n instance
  2. Navigate to "Settings" > "Community Nodes"
  3. Click "Install"
  4. Enter n8n-nodes-mattermost-missing-actions in the package name field
  5. Click "Install"

Using n8n Docker

If you're running n8n in Docker, you'll need to install the node in your Dockerfile:

FROM n8n/n8n

USER root

RUN npm install n8n-nodes-mattermost-missing-actions

USER node

Credentials

To use this node, you need to configure Mattermost API credentials:

  1. Access Token: Personal access token for Mattermost API
  2. Base URL: Base URL of your Mattermost instance (e.g., https://your-mattermost-instance.com)
  3. User ID: User ID of the account associated with the access token

To create a personal access token in Mattermost:

  1. Go to your Mattermost instance
  2. Click on your profile picture > Settings
  3. Go to Security > Personal Access Tokens
  4. Click "Create New Token"
  5. Give it a description and click "Save"
  6. Copy the token (you won't be able to see it again)

To find your User ID:

  1. Go to your Mattermost instance
  2. Click on your profile picture > Profile
  3. The URL will contain your user ID (e.g., https://your-mattermost-instance.com/username/USER_ID)

Usage

Send Direct Message

The primary function of this node is to send direct messages between users:

  1. Add the "Mattermost" node to your workflow
  2. Select "Send Direct Message" as the operation
  3. Configure the following parameters:
    • From: Username of the sender (can be a bot user)
    • To: Username of the recipient
    • Message: The message content to send

Example Workflow

Here's a simple example of how to use this node:

  1. HTTP Request node (to trigger the workflow)
  2. Mattermost node (to send a direct message)
  3. No Operation (NOOP) node (to end the workflow)

In the Mattermost node:

  • Operation: Send Direct Message
  • From: bot-user
  • To: recipient-username
  • Message: Hello from n8n!

Node Reference

Mattermost Node

  • Name: Mattermost
  • Operations:
    • Send Direct Message: Sends a direct message from one user to another

Parameters

  • From (required): Username of the sender
  • To (required): Username of the recipient
  • Message (required): Message content to send

Support

If you have any issues or feature requests, please open an issue on GitHub.

License

MIT