Real-time push notifications to mobile devices.
## Pushover MCP Server: Simple Push Notifications The **Pushover MCP Server** integrates Pushover's notification service into Google Antigravity. This provides simple, reliable push notifications to iOS, Android, and desktop devices for alerts and monitoring. ### Why Pushover MCP? Pushover focuses on simplicity: - **Simple API**: One API call to notify - **Cross-Platform**: iOS, Android, Desktop - **Priority Levels**: Quiet to emergency - **No Subscription**: One-time purchase - **Reliable**: Direct push delivery ### Key Features #### 1. Send Notifications ```python import requests response = requests.post("https://api.pushover.net/1/messages.json", data={ "token": "your-app-token", "user": "your-user-key", "message": "Build #123 completed successfully!", "title": "CI/CD Alert" }) ``` #### 2. Priority Levels ```python # Emergency priority (requires acknowledgment) response = requests.post("https://api.pushover.net/1/messages.json", data={ "token": "your-app-token", "user": "your-user-key", "message": "CRITICAL: Server down!", "priority": 2, "retry": 30, "expire": 3600 }) # Silent notification response = requests.post("https://api.pushover.net/1/messages.json", data={ "token": "your-app-token", "user": "your-user-key", "message": "Daily backup completed", "priority": -1 }) ``` #### 3. Rich Notifications ```python # With image and URL response = requests.post("https://api.pushover.net/1/messages.json", data={ "token": "your-app-token", "user": "your-user-key", "message": "New deployment ready", "url": "https://app.example.com", "url_title": "View App", "sound": "magic" }, files={"attachment": open("screenshot.png", "rb")}) ``` ### Configuration ```json { "mcpServers": { "pushover": { "command": "npx", "args": ["-y", "@anthropic/mcp-pushover"], "env": { "PUSHOVER_APP_TOKEN": "your-app-token", "PUSHOVER_USER_KEY": "your-user-key" } } } } ``` ### Use Cases **DevOps Alerts**: Build and deploy notifications. **Monitoring**: Server and service alerts. **Personal Automation**: Custom notifications. The Pushover MCP Server brings simple push notifications to Antigravity.
{
"mcpServers": {
"pushover": {}
}
}