HomeJavaModsNotify Me Mod
Notify Me Mod
ModsJava

Notify Me Mod

by Antara89 · on Modrinth

NotifyMe is a lightweight Fabric server-side mod for Minecraft 1.21.1 that watches common server events and sends notifications outside the game.

⬇ Download on Modrinth
Notify Me Mod — screenshot 1

NotifyMe

NotifyMe is a lightweight Fabric server-side mod for Minecraft 1.21.1 that watches common server events and sends notifications outside the game.

It is built for server owners who want to know when important things happen without keeping the Minecraft client open. NotifyMe can alert operators in-game, send email through Postfix/sendmail, post Telegram bot messages, call a generic JSON webhook, or publish to an ntfy topic.

Features

Requirements

NotifyMe is server-side. Players do not need to install it on their clients.

Installation

  1. Install Fabric Loader and Fabric API on your Minecraft 1.21.1 server.
  2. Put the NotifyMe jar into the server mods folder.
  3. Start the server once.
  4. Edit the generated config file at config/notifymemod.json.
  5. Run /notifyme reload or restart the server.
  6. Run /notifyme test to verify your configured notification channels.

Notification Channels

In-Game

In-game notifications are enabled by default. By default, NotifyMe sends messages only to server operators.

Set inGame.opsOnly to false to send to all online players, or set inGame.recipients to a list of exact player names.

Postfix / sendmail

NotifyMe can pass email to a local sendmail command, which works well with Postfix.

Enable postfix.enabled, configure postfix.from, and add one or more addresses to postfix.to.

Example:

"postfix": {
  "enabled": true,
  "sendmailPath": "/usr/sbin/sendmail",
  "from": "minecraft@example.com",
  "to": ["admin@example.com"],
  "timeoutSeconds": 10
}

Postfix must already be configured on the server. NotifyMe only hands the message to sendmail; it does not configure SMTP, DNS, DKIM, SPF, or relay settings.

Telegram

Create a bot with BotFather, add it to the target chat, and configure the bot token and chat id.

Example:

"telegram": {
  "enabled": true,
  "botToken": "123456:bot-token",
  "chatId": "123456789",
  "messageThreadId": 0,
  "disableNotification": false,
  "timeoutSeconds": 10
}

For forum topics or supergroup threads, set messageThreadId.

Webhook

The webhook backend sends a JSON payload with the event name, title, message, compact message, player name, timestamp, and metadata.

Example:

"webhook": {
  "enabled": true,
  "url": "https://example.com/minecraft-webhook",
  "secretHeaderName": "X-NotifyMe-Secret",
  "secretHeaderValue": "change-me",
  "timeoutSeconds": 10
}

ntfy

NotifyMe can publish directly to an ntfy topic URL.

Example:

"ntfy": {
  "enabled": true,
  "topicUrl": "https://ntfy.sh/my-minecraft-topic",
  "token": "",
  "priority": "default",
  "tags": ["minecraft"],
  "timeoutSeconds": 10
}

For protected ntfy topics, set token.

Configuration

NotifyMe creates config/notifymemod.json on first run.

Default event settings:

"events": {
  "serverStarted": true,
  "serverStopping": true,
  "playerJoined": true,
  "playerLeft": true,
  "playerDied": true,
  "chatMessage": false,
  "commandMessage": false,
  "gameMessage": false,
  "test": true
}

Chat, command, and game-message notifications are disabled by default because they can be noisy and may contain private or sensitive information. Enable them only when that fits your server policy.

Filtering options:

"filters": {
  "watchedPlayers": [],
  "ignoredPlayers": [],
  "ignoreMessagesStartingWith": ["/login", "/register"]
}

General options:

"serverName": "Minecraft Server",
"timezone": "system",
"subjectPrefix": "[Minecraft]"

Commands

NotifyMe commands require permission level 2.

/notifyme reload
/notifyme test
/notifyme status

Privacy Notes

External notification services can receive player names, chat content if enabled, death messages, coordinates, server metadata, and timestamps.

Review your configuration before enabling chat, command-message, game-message, webhook, Telegram, ntfy, or email delivery on public servers.

Compatibility

NotifyMe uses Fabric API event hooks and does not require mixins. It should be compatible with most server-side Fabric mods unless another mod changes the same events in unusual ways.

License

NotifyMe is licensed under CC0-1.0.

Quick facts

Install steps are the general flow for this file type — How to install Minecraft Java mods & modpacks walks through it step by step.

Verified by MCModsHub

These come from our own check of the pack file, not from the source page.

Explore more