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

@toolprint/mcping-mcp

v0.0.4

Published

The fastest way to get desktop notifications from your AI assistant! 🔔

Readme

MCPing - macOS Notification MCP Server

License: MIT npm version Node.js Version

I got a ping! 🎉 The spiciest way to make your Mac go ding-dong when your AI has something to say!

MCPing is a Model Context Protocol (MCP) server that enables AI assistants to send desktop notifications on macOS. Finally, your AI can tap you on the shoulder instead of just sitting there quietly being brilliant.

Installation

Prerequisites: Node.js 18+ and macOS (for notifications)

Quick Start (Recommended)

Add to your MCP client settings:

{
  "mcpServers": {
    "toolprint-mcping": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@toolprint/mcping-mcp@latest"]
    }
  }
}

Manual Installation

npm install -g @toolprint/mcping-mcp
mcping-mcp

Configuration

For Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "mcping": {
      "command": "npx",
      "args": ["-y", "@toolprint/mcping-mcp"]
    }
  }
}

For Development (HTTP Mode)

# Run in HTTP mode for testing
npx @toolprint/mcping-mcp --transport http --port 3000

# Test with curl
curl -X POST http://localhost:3000/mcp \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
      "name": "send-notification",
      "arguments": {
        "title": "Hello World",
        "message": "This is a test notification"
      }
    }
  }'

Usage

Once configured, ask your AI assistant:

  • "Send a notification saying the build is complete"
  • "Send a critical alert that the server is down"
  • "Send a quiet reminder to take a break"
  • "Notify me with title 'Tests Passed' and message 'All 127 tests passed'"

Tool: send-notification

Send desktop notifications on macOS with rich formatting options.

Parameters:

  • title (required): Notification title (1-100 characters)
  • message (required): Notification message (1-500 characters)
  • subtitle (optional): Additional context (max 100 characters)
  • urgency (optional): "low" | "normal" | "critical" (default: "normal")
  • sound (optional): Play notification sound (default: true)
  • timeout (optional): Display duration in seconds, 1-60 (default: 10)

Examples:

// Basic notification
{
  "title": "Task Complete",
  "message": "Your build finished successfully"
}

// Critical alert with subtitle
{
  "title": "Server Down",
  "message": "Production server is not responding",
  "subtitle": "api.example.com",
  "urgency": "critical",
  "sound": true,
  "timeout": 60
}

// Quiet reminder
{
  "title": "Break Time",
  "message": "You've been coding for 2 hours",
  "urgency": "low",
  "sound": false,
  "timeout": 10
}

Troubleshooting

Notifications Not Appearing?

  1. Check Permissions: System Preferences → Notifications → Terminal (allow notifications)
  2. Do Not Disturb: Ensure DND is disabled or use urgency: "critical"
  3. Verbose Mode: Run with --verbose flag for detailed logs

Common Issues

  • "Permission denied": Grant Terminal notification permissions in System Preferences
  • "Not available": Ensure you're running on macOS
  • "Rate limited": Wait between sending multiple notifications

Development

# Clone repository
git clone https://github.com/toolprint/mcping-mcp.git
cd mcping-mcp

# Install dependencies
npm install

# Run tests
npm test

# Build
npm run build

# Development mode
npm run dev

License

MIT © Toolprint

Usage

When using, forking, or distributing this software, the MIT License requires that you include the original copyright notice ("Copyright © OneGrep, Inc.") and license text in all copies or substantial portions of the software. This attribution requirement ensures proper credit to the original authors while allowing you to freely use, modify, and distribute the code.

About Toolprint

Building tools for the AI agent ecosystem. Visit toolprint.ai to explore our suite of MCP servers and developer tools.