Google Antigravity Directory

The #1 directory for Google Antigravity prompts, rules, workflows & MCP servers. Optimized for Gemini 3 agentic development.

Resources

PromptsMCP ServersAntigravity RulesGEMINI.md GuideBest Practices

Company

Submit PromptAntigravityAI.directory

Popular Prompts

Next.js 14 App RouterReact TypeScriptTypeScript AdvancedFastAPI GuideDocker Best Practices

Legal

Privacy PolicyTerms of ServiceContact Us
Featured on FazierFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App ShowAI ToolzShinyLaunchMillion Dot HomepageSolver ToolsFeatured on FazierFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App ShowAI ToolzShinyLaunchMillion Dot HomepageSolver Tools

© 2026 Antigravity AI Directory. All rights reserved.

The #1 directory for Google Antigravity IDE

This website is not affiliated with, endorsed by, or associated with Google LLC. "Google" and "Gemini" are trademarks of Google LLC.

Antigravity AI Directory
PromptsMCPBest PracticesUse CasesLearn
Home
MCP Servers
Pushover MCP
📲

Pushover MCP MCP Server

Real-time push notifications to mobile devices.

pushovernotificationsmobilepush

About

## 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.

Installation

Configuration
{
  "mcpServers": {
    "pushover": {}
  }
}

How to Use

    Related MCP Servers

    🧰

    Toolhouse MCP

    Universal AI tool platform that equips your AI with production-ready capabilities. Execute code, browse the web, manage files, send emails, and more through a unified MCP interface.

    🔨

    Smithery Registry MCP

    The MCP server registry and discovery platform. Browse, search, and install MCP servers from the community. Find the perfect integrations for your AI development workflow.

    🔍

    MCP Inspector

    Official debugging and testing tool for MCP servers. Inspect server capabilities, test tool calls, validate responses, and debug protocol communication in real-time.

    ← Back to All MCP Servers