npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

mcp-opsgenie

v1.0.4

Published

MCP server for Opsgenie integration

Readme

Opsgenie MCP Server

A Model Context Protocol (MCP) server for integrating with Opsgenie's alert management system. This server allows you to manage Opsgenie alerts through any MCP-compatible client like Claude Desktop.

Features

This MCP server provides comprehensive Opsgenie integration with the following tools:

  • create_alert: Create new alerts in Opsgenie
  • list_alerts: List and search alerts with filtering options
  • get_alert: Get detailed information about a specific alert
  • acknowledge_alert: Acknowledge alerts
  • close_alert: Close resolved alerts
  • snooze_alert: Snooze alerts for a specified time period
  • unacknowledge_alert: Remove acknowledgment from alerts
  • add_note_to_alert: Add notes to existing alerts

Quick Start

Prerequisites

Installation

  1. Download or clone this server:
git clone https://github.com/HainanZhao/mcp-opsgenie.git
cd mcp-opsgenie
  1. Set up the project:
npm run setup
  1. Configure your API key:
# Edit .env and add your OPSGENIE_API_KEY
  1. Test your setup:
npm test

Available Commands

npm run setup      # Install dependencies, build, and create .env
npm run build      # Build TypeScript to JavaScript
npm run dev        # Start development server with auto-reload
npm test           # Run tests to validate setup
npm start          # Start the MCP server
npm run clean      # Remove build artifacts

Configuration

Environment Variables

Create a .env file with your Opsgenie API key:

OPSGENIE_API_KEY=your_opsgenie_api_key_here

MCP Client Configuration

Add this server to your MCP client configuration. For Claude Desktop, add to your config file:

{
  "mcpServers": {
    "opsgenie": {
      "command": "/path/to/mcp-opsgenie/dist/index.js",
      "env": {
        "OPSGENIE_API_KEY": "your_api_key_here"
      }
    }
  }
}

Alternative using npm/npx (if installed globally):

{
  "mcpServers": {
    "opsgenie": {
      "command": "npx",
      "args": ["mcp-opsgenie"],
      "env": {
        "OPSGENIE_API_KEY": "your_api_key_here"
      }
    }
  }
}

Claude Desktop config locations:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

Usage Examples

Creating an Alert

Ask your MCP client to create an alert:

"Create a P1 alert in Opsgenie with message 'Database connection failed' for the Backend Team"

Or provide specific details:

  • Message: "Database connection failed"
  • Priority: P1 (Critical)
  • Teams: Backend Team
  • Tags: database, production, critical
  • Description: Detailed problem description

Managing Alerts

  • List alerts: "Show me all open P1 alerts"
  • Get alert details: "Get details for alert ID abc123"
  • Acknowledge: "Acknowledge alert abc123 with note 'Investigating'"
  • Close alert: "Close alert abc123 with note 'Issue resolved'"
  • Snooze: "Snooze alert abc123 until 2024-12-25 10:00 AM"

Searching Alerts

Use Opsgenie's powerful query syntax:

  • "List alerts with status open and priority P1"
  • "Show me alerts tagged with 'database' from the last 24 hours"
  • "Find all unacknowledged alerts for the Backend Team"

API Reference

Alert Priorities

  • P1: Critical - Immediate action required
  • P2: High - Quick response needed
  • P3: Medium - Normal priority (default)
  • P4: Low - Can be addressed during business hours
  • P5: Informational - For awareness

Search Query Examples

  • status:open - Open alerts only
  • priority:P1 - P1 priority alerts
  • tag:production - Alerts with "production" tag
  • team:"Backend Team" - Alerts for specific team
  • createdAt>"2024-01-01" - Alerts after a date
  • status:open AND priority:P1 - Combine conditions

Troubleshooting

Common Issues

"Authentication failed"

  • Verify your API key is correct in the .env file
  • Ensure the API key has necessary permissions in Opsgenie

"Cannot find module"

  • Run npm install to install dependencies
  • Make sure you've run npm run build to compile TypeScript

"No alerts found"

  • Check if you have alerts in your Opsgenie account
  • Verify your search query syntax
  • Try listing without filters first

Getting Help

  • Check the examples documentation for detailed usage patterns
  • Review your Opsgenie API permissions
  • Ensure network connectivity to api.opsgenie.com

What You Can Do

With this MCP server, you can:

Create alerts with full customization (priority, teams, tags, etc.)
Search and filter alerts using Opsgenie's query language
Manage alert lifecycle (acknowledge, close, snooze)
Add notes and collaborate on incident resolution
Integrate with any MCP-compatible AI assistant
Automate alert management through natural language

Security Notes

  • Keep your API key secure and never commit it to version control
  • Use environment variables for configuration
  • Consider using API keys with minimal required permissions
  • The server only makes outbound connections to Opsgenie's API

Contributing

See CONTRIBUTING.md for development setup and contribution guidelines.

License

MIT License - see LICENSE file for details.