MCP Server Notifier
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.
Overview
The mcp-server-notifier is a lightweight Node.js server designed to send webhook notifications, particularly useful for developers utilizing AI agents like Cursor across multiple projects. It alerts users upon task completion, facilitating efficient project management and switching.
To use the mcp-server-notifier, set it up in your Cursor settings by adding a new MCP server with a unique name and configuring it to send notifications to your specified webhook URL. You can also set it as a rule in Cursor for automated notifications.
- Sends webhook notifications for task completions. - Supports multi-project development with AI integration. - Easy setup and configuration for developer tools and automation workflows.
- Notifying developers when a task is completed in a multi-project environment.
- Integrating with AI agents to streamline project management.
- Automating notifications to enhance workflow efficiency.
Add to your AI client
Use these steps to connect MCP Server Notifier in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-server-notifier-tuberrabbit": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-notifier-tuberrabbit"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-server-notifier-tuberrabbit": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-notifier-tuberrabbit"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-server-notifier-tuberrabbit": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-notifier-tuberrabbit"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-server-notifier-tuberrabbit": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-notifier-tuberrabbit"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-server-notifier-tuberrabbit": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-notifier-tuberrabbit"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-server-notifier-tuberrabbit": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-notifier-tuberrabbit"
]
}
}
}FAQ
Can I use mcp-server-notifier with any webhook service?
Yes! You can configure it to work with any service that supports webhook notifications.
Is there a limit to the number of projects I can use it with?
No, you can use it across multiple projects without any limitations.
How do I set up the webhook URL?
You can set up the webhook URL during the MCP server configuration in your Cursor settings.