Lightweight Node.js server sending webhook notifications. Ideal for devs using AI agents (e.g., Cursor) on multi-projects, alerting task completion for efficient switching. Features webhook alerts, multi-project dev, AI integration, easy setup for dev tools & automation.
{
"mcpServers": {
"mcp-notifications": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
> This project is a spiritual successor to the original mcp-server-notifier by tuberrabbit@gmail.com, and has been significantly rewritten and is now maintained by zudsniper.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 217 days ago. 6 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Dynamic problem-solving through sequential thought chains
A Model Context Protocol server for searching and analyzing arXiv papers
An open-source AI agent that brings the power of Gemini directly into your terminal.
The official Python SDK for Model Context Protocol servers and clients
MCP Security Weekly
Get CVE alerts and security updates for Mcp Notifications and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
This project is a spiritual successor to the original
mcp-server-notifierby tuberrabbit@gmail.com, and has been significantly rewritten and is now maintained by zudsniper.
A modern, scalable notification service that integrates with MCP (Model Context Protocol) to send real-time notifications and webhooks when AI agents complete tasks. Now featuring a monorepo architecture with SSE (Server-Sent Events) support, Next.js web interface, and PocketBase integration.

The v3.0 architecture consists of multiple components working together:
User/AI Agent → SSE Server → Queue → Webhook Provider
↓ ↓
PocketBase Rate Limiter
↓
Web Dashboard
This is a monorepo organized with npm workspaces:
mcp-notifications/
├── apps/
│ ├── sse-server/ # Cloudflare Worker for SSE connections
│ └── web/ # Next.js dashboard
├── packages/
│ └── shared/ # Shared types and utilities
├── legacy/ # Legacy MCP server implementation
└── pocketbase/ # PocketBase schema and migrations
# Clone the repository
git clone https://github.com/zudsniper/mcp-notifications.git
cd mcp-notifications
# Install dependencies for all workspaces
npm install
# Build all packages
npm run build
cd apps/sse-server
npm run deploy
cd apps/web
npm run dev
The original MCP server is still available in the legacy/ directory:
cd legacy
npm install
npm run build