Email Notifications¶
Receive email notifications with support for immediate alerts or digest summaries.
Quick Setup¶
Configuration Options¶
| Option | Type | Required | Description |
|---|---|---|---|
email | string | ✅ | Recipient email address |
digest | string | ❌ | Digest frequency (see below) |
Digest Options¶
| Value | Description |
|---|---|
immediate | Send each change as it happens (default) |
hourly | Batch changes every hour |
daily | Daily summary at 9 AM UTC |
weekly | Weekly summary on Mondays at 9 AM UTC |
Server Configuration¶
Email requires SMTP configuration on the server:
YAML
# config.yaml
notifications:
email:
enabled: true
smtp:
host: "smtp.example.com"
port: 587
username: "notifications@example.com"
password: "${SMTP_PASSWORD}"
from: "MCP Watch <notifications@example.com>"
tls: true
Environment Variables¶
Bash
export MCP_WATCH_SMTP_HOST="smtp.gmail.com"
export MCP_WATCH_SMTP_PORT="587"
export MCP_WATCH_SMTP_USERNAME="you@gmail.com"
export MCP_WATCH_SMTP_PASSWORD="app-password"
Email Format¶
Immediate Notification¶
Text Only
Subject: 🆕 New MCP Server: awesome-database-tool
A new MCP server has been added to the registry!
Server: awesome-database-tool
Version: 1.2.0
Description: A database integration for AI assistants
Repository: https://github.com/example/awesome-database-tool
---
You're receiving this because you subscribed to MCP Notify.
Unsubscribe: https://...
Daily Digest¶
Text Only
Subject: 📋 MCP Registry Daily Digest - Jan 5, 2026
Here's what changed in the MCP Registry today:
NEW SERVERS (3)
• awesome-database-tool (v1.2.0)
• another-new-server (v0.1.0)
• cool-integration (v2.0.0)
UPDATED SERVERS (5)
• popular-tool: v1.0.0 → v1.1.0
• another-tool: v2.3.0 → v2.4.0
...
---
MCP Notify Daily Digest
Unsubscribe: https://...
Troubleshooting¶
Not receiving emails?
- Check spam/junk folder
- Verify SMTP configuration
- Check server logs for SMTP errors
- Test with:
mcp-notify-cli subscriptions test <id>
Gmail not working?
Use an App Password:
- Enable 2FA on your Google account
- Go to Security → App passwords
- Generate a password for "Mail"
- Use that instead of your regular password