everything vs mcp-notifications
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mcp-notifications by zudsniper | |
|---|---|---|
| Stars | ★ 85,748 | ★ 6 |
| 30d uses | — | — |
| Score | 77 | 37 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | CommunicationDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 9 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-notifications · Summary
MCP server for real-time notifications and webhooks when AI agents complete tasks.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
mcp-notifications · Use cases
- Receiving notifications when AI assistants finish tasks in Cursor or other AI tools
- Setting up cross-platform alerts to Slack, Discord, or Teams for AI agent activities
- Creating a notification system for AI workflows across multiple development projects
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingmcp-notifications · Install
# Clone the repository
git clone https://github.com/zudsniper/mcp-notifications.git
cd mcp-notifications
# Install dependencies
npm install
# Build the package
npm run buildLegacy MCP Server Integration
For Claude Desktop, add to your claude_desktop_config.json:
{
"mcpServers": {
"notifier": {
"command": "node",
"args": [
"/path/to/legacy/build/index.js"
],
"env": {
"WEBHOOK_URL": "https://ntfy.sh/webhook-url-example",
"WEBHOOK_TYPE": "ntfy"
}
}
}
}For the new SSE-based system, deploy to Cloudflare Workers and configure your AI tools to connect to the SSE endpoint.