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 FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App ShowFeatured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App Show

© 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
OpsGenie
bell

OpsGenie MCP Server

Alert management

opsgenieincidentsalertsatlassianon-call

About

## OpsGenie MCP Server: Alert Management The **OpsGenie MCP Server** integrates Atlassian OpsGenie's alert management platform into Google Antigravity. This enables creating alerts, managing on-call schedules, and coordinating incident response. ### Why OpsGenie MCP? OpsGenie ensures the right people respond: - **Alert Routing**: Smart escalation policies - **On-Call Management**: Schedules and rotations - **Incident Management**: Coordinate response - **200+ Integrations**: Connect monitoring tools - **Mobile App**: Alert anywhere ### Key Features #### 1. Create Alerts ```python import requests headers = {"Authorization": f"GenieKey {api_key}"} alert = requests.post( "https://api.opsgenie.com/v2/alerts", headers=headers, json={ "message": "High CPU Usage on prod-web-01", "priority": "P1", "tags": ["production", "infrastructure"], "details": {"cpu_usage": "95%", "server": "prod-web-01"} } ) ``` #### 2. Manage Alerts ```python # Acknowledge alert requests.post( f"https://api.opsgenie.com/v2/alerts/{alert_id}/acknowledge", headers=headers, json={"user": "oncall@example.com", "note": "Investigating"} ) # Close alert requests.post( f"https://api.opsgenie.com/v2/alerts/{alert_id}/close", headers=headers, json={"note": "Resolved by scaling up instances"} ) ``` #### 3. On-Call Schedules ```python # Get who's on-call response = requests.get( "https://api.opsgenie.com/v2/schedules/{schedule_id}/on-calls", headers=headers ) for participant in response.json()["data"]["onCallParticipants"]: print(f"On-call: {participant['name']}") ``` ### Configuration ```json { "mcpServers": { "opsgenie": { "command": "npx", "args": ["-y", "@anthropic/mcp-opsgenie"], "env": { "OPSGENIE_API_KEY": "your-api-key" } } } } ``` ### Use Cases **Alert Management**: Route alerts to right teams. **Incident Response**: Coordinate during outages. **On-Call**: Manage schedules and rotations. The OpsGenie MCP Server brings alert management to Antigravity.

Installation

Configuration
{
  "mcpServers": {
    "opsgenie": {
      "mcpServers": {
        "opsgenie": {
          "env": {
            "OPSGENIE_API_KEY": "your-api-key"
          },
          "args": [
            "-y",
            "opsgenie-mcp-server"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 11. Get API key from OpsGenie settings
  2. 22. Create, acknowledge, close, assign alerts
  3. 33. Search alerts using OpsGenie query syntax

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