Sending Notifications from AI
This tutorial will teach you how to set up and use the notification system in Plugged.in, allowing your AI assistant to send real-time alerts and updates.
- Plugged.in account with MCP proxy configured
- MCP client (Claude Desktop, Cursor, etc.) connected
- Email configured in settings (optional, for email notifications)
1Enable Notifications
First, ensure notifications are enabled for your current profile. This allows the MCP proxy to log activities and send notifications.
Screenshot: Profile settings with notifications toggle
Shows the notification settings in your profile
2Configure Email Notifications (Optional)
For critical alerts, you can enable email delivery. This ensures you receive important notifications even when not actively using Plugged.in.
- Go to Settings → Notifications
- Toggle 'Email Notifications' on
- Verify your email address if not already done
Screenshot: Email notification settings
Shows email configuration options
3Using the Notification Tool
The pluggedin_send_notification tool is available in your MCP client. Here's how to use it effectively:
Send a basic notification that appears in the Plugged.in notification center:
Use pluggedin_send_notification to send "Task completed successfully!"
Screenshot: Notification appearing in the bell menu
Shows how the notification appears in the UI
4Practical Examples
Notify team members about deployment status:
1. Query RAG for deployment checklist
2. Execute deployment steps
3. Send notification "Deployment to production complete" with SUCCESS severity
4. If errors occur, send ALERT with email enabled
Send notifications based on analysis outcomes:
After analyzing logs:
- If errors found: Send "Found 3 critical errors in logs" with ALERT
- If warnings: Send "5 warnings detected" with WARNING
- If clean: Send "Log analysis complete - no issues" with SUCCESS
Alert on system resource usage:
Monitor system resources and:
- CPU > 80%: Send "High CPU usage: 85%" with WARNING
- Memory > 90%: Send "Critical memory usage: 92%" with ALERT + email
- Disk full: Send "Disk space critical: 2GB remaining" with ALERT + email
Best Practices
Include specific details like counts, percentages, or status codes
Reserve ALERT for critical issues that need immediate attention
Only enable email for notifications that require action when away from the app
Include timestamp, affected systems, or relevant identifiers
Combine notifications with RAG queries for intelligent alerting. For example, query your documentation for thresholds, then send notifications when those thresholds are exceeded.