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

mcp-notify

v1.0.5

Published

MCP server for node-notifier

Downloads

42

Readme

MCP Notify Server

Install with NPX in VS Code Install with NPX in VS Code Insiders

A Model Context Protocol (MCP) server that provides system notification capabilities using node-notifier.

Tools

show-notification

Shows a system notification using the default notifier for the current platform.

Common parameters for all notification tools:

  • title: Title of the notification
  • message: Message content of the notification
  • sound (optional): Play a sound with the notification (default: false)
  • wait (optional): Wait for user action before removing notification (default: false)
  • icon (optional): Path to icon file (.ico, .png, .jpg, or platform specific)
  • timeout (optional): Time in seconds before notification expires (Linux/Windows)

show-notification-macos

Shows a notification using macOS Notification Center. Additional parameters:

  • actions: Array of action button labels
  • closeLabel: Label for closing notification
  • dropdownLabel: Label for dropdown
  • reply: Enable reply functionality

show-notification-linux

Shows a notification using Linux notify-send. Additional parameters:

  • urgency: Notification urgency level ("low", "normal", "critical")
  • category: Category of notification
  • hint: Hint for notification display
  • app-name: Application name

show-notification-windows-toast

Shows a notification using Windows Toast notifications (Windows 8+). Additional parameters:

  • appID: Application identifier
  • shortcutPath: Path to shortcut file for notification
  • install: Path to installer when notification is clicked

show-notification-windows-balloon

Shows a notification using Windows Balloon notifications (Windows 7 and earlier). Additional parameters:

  • type: Notification type ("info", "warn", "error")

show-notification-growl

Shows a notification using Growl. Additional parameters:

  • name: Application name for Growl
  • host: Growl server host
  • port: Growl server port
  • sticky: Keep notification visible
  • label: Label for notification
  • priority: Notification priority (-2 to 2)
  • sender: Sender of notification

Development

  1. Install dependencies:
npm install
  1. Build the project:
npm run build
  1. Start the server:
npm start

Usage with VS Code

For quick installation, use one of the one-click install buttons at the top of this README.

For manual installation, add the following JSON block to your User Settings (JSON) file in VS Code. You can do this by pressing Ctrl + Shift + P and typing Preferences: Open User Settings (JSON).

Optionally, you can add it to a file called .vscode/mcp.json in your workspace. This will allow you to share the configuration with others.

Note that the mcp key is not needed in the .vscode/mcp.json file.

{
  "mcp": {
    "servers": {
      "notify": {
        "command": "npx",
        "args": ["-y", "mcp-notify"]
      }
    }
  }
}