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

simple-ntfy-mcp

v1.0.1

Published

Simple ntfy MCP server for sending push notifications via ntfy.sh - works with npx

Readme

Simple Ntfy MCP Server

npm version License: MIT

A simple MCP (Model Context Protocol) server for sending push notifications via ntfy.sh. Works seamlessly with Claude Desktop and other MCP-compatible clients.

Features

  • 🚀 Zero configuration - Works out of the box with npx
  • 📱 Push notifications - Send notifications to any device via ntfy
  • Lightweight - Minimal dependencies
  • 🔧 Customizable - Support for titles, priorities, tags, click actions, and action buttons

Installation & Usage

With npx (Recommended)

No installation needed! Just add to your Claude Desktop config (%APPDATA%\Claude\claude_desktop_config.json on Windows or ~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "ntfy": {
      "command": "npx",
      "args": ["-y", "simple-ntfy-mcp"],
      "env": {
        "NTFY_DEFAULT_TOPIC": "your-topic-name"
      }
    }
  }
}

Global Installation

npm install -g simple-ntfy-mcp

Then use in your Claude Desktop config:

{
  "mcpServers": {
    "ntfy": {
      "command": "simple-ntfy-mcp",
      "env": {
        "NTFY_DEFAULT_TOPIC": "your-topic-name"
      }
    }
  }
}

Configuration

Environment Variables

| Variable | Description | Default | |----------|-------------|---------| | NTFY_DEFAULT_TOPIC | Default topic to send notifications to | (required) | | NTFY_BASE_URL | Base URL of ntfy server | https://ntfy.sh |

Tool: send_ntfy

Send a push notification to your configured ntfy topic.

Parameters

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | message | string | ✅ | The notification message | | topic | string | ❌ | Topic to send to (uses default if not specified) | | title | string | ❌ | Notification title | | priority | number | ❌ | Priority level 1-5 (default: 3) | | tags | string[] | ❌ | Array of tags/emojis | | click | string | ❌ | URL to open when notification is clicked | | actions | object[] | ❌ | Action buttons |

Example Usage

Once configured, you can ask Claude to send you notifications:

"Send me a notification when you're done with this task"

Or be more specific:

"Send a high priority notification with the title 'Build Complete' and message 'Your project has finished building'"

Example Tool Call

{
  "message": "Your task is complete!",
  "title": "Task Completed",
  "priority": 4,
  "tags": ["white_check_mark", "rocket"],
  "click": "https://example.com"
}

What is ntfy?

ntfy is a simple HTTP-based pub-sub notification service. It allows you to send push notifications to your phone or desktop from any script or application. It's free, open source, and you can even self-host it.

To receive notifications:

  1. Install the ntfy app on your Android or iOS device
  2. Subscribe to your chosen topic
  3. Configure this MCP server with the same topic name

License

MIT