MCPing

MCPing

Enables AI assistants to send desktop notifications on macOS with rich formatting, urgency levels, and sound options.

Category
Visit Server

README

MCPing - macOS Notification MCP Server

License: MIT npm version Node.js Version

I got a notification! 🎉

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@latest
mcping-mcp

Configuration

For Claude Desktop

Add to claude_desktop_config.json:

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

For Development (HTTP Mode)

# Run in HTTP mode for testing
npx @toolprint/mcping-mcp@latest --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.


<div align="center"> <strong>MCPing</strong> - Desktop notifications for AI assistants<br> Made with ❤️ by <a href="https://toolprint.ai">Toolprint</a> </div>

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured