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

v2.2.0

Published

Push notifications for AI developers via MCP - Get notifications from Claude Desktop, Claude Code, Cursor, and Windsurf on your mobile device

Readme

MCP Notification

Push notifications for AI developers, delivered via MCP. Get notifications from Claude Desktop, Claude Code, Cursor, and Windsurf on your mobile device.

Quick Start

Method 1: Automated Setup (Recommended)

The easiest way to get started:

npm install -g mcp-notification
mcp-notification setup

The setup wizard will automatically detect and configure your AI clients:

  • Claude Desktop
  • Claude Code CLI
  • Cursor
  • Windsurf

Method 2: Manual Configuration

If you prefer manual setup, add to your client's config file:

Claude Desktop (~/.claude/claude_desktop_config.json):

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

Claude Code CLI:

claude mcp add --transport stdio --scope user notify -- npx -y mcp-notification

Cursor (.cursor/mcp.json or global config):

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

Windsurf (~/.codeium/windsurf/mcp_config.json):

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

Method 3: npx On-Demand

Use without global installation (always uses latest version):

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

Setup

  1. Install the MCP Notify app on your iPhone (App Store)
  2. In Claude Code, say "pair my phone"
  3. Scan the QR code with the app
  4. Done! Start receiving notifications.

Usage

  • "Notify me when you're done"
  • "Send a notification that the build completed"
  • "What's my notification quota?"
  • "List my paired devices"

Commands

| Command | Description | |---------|-------------| | pair my phone | Start QR code pairing | | send notification | Send a push notification | | show quota | Check usage limits | | list devices | Show paired devices |

MCP Tools

This server provides the following MCP tools:

| Tool | Description | Parameters | |------|-------------|------------| | pair_device | Start QR code pairing | device_name? | | check_pairing_status | Check if QR was scanned | None | | get_setup_status | Check if ready to use | None | | send_notification | Send a push notification | title, body?, priority?, url?, tags? | | get_history | View notification history | limit?, tags? | | get_quota | Check usage limits | None | | list_devices | List paired devices | None | | remove_device | Remove a device | device_id |

Configuration

Environment Variables

| Variable | Description | Default | |----------|-------------|---------| | MCP_NOTIFY_API_URL | Backend API URL | https://api.mcpnotify.dev/v1 |

Credential Storage

Credentials are stored in ~/.mcp-notify/:

~/.mcp-notify/
├── credentials.json    # API key and user info
└── pairing_state.json  # Temporary pairing data

Troubleshooting

Setup Wizard Not Working?

If the automated setup fails, try manual configuration or check:

  • Permissions on config files
  • Client is properly installed
  • For Claude Code: claude --version should work

Already Configured?

If you previously used mcp-notify, the new mcp-notification package replaces it. Both bin commands (mcp-notification and mcp-notify) work for backward compatibility.

Development

# Clone the repo
git clone https://github.com/box7e7/mcp-notify
cd mcp-notify

# Install dependencies
npm install

# Build
npm run build

# Test setup wizard locally
npm link
mcp-notification setup

# Run tests
npm test

# Start in development mode
npm run dev

Publishing

# Build the project
npm run build

# Publish to npm (requires npm login)
npm publish

Links

License

MIT