Opsgenie

Manage incidents and on-call schedules via Opsgenie API. Create alerts and escalations.

modbender Updated 12 repo stars

File contents

Opsgenie

Incident management.

Environment

export OPSGENIE_API_KEY="xxxxxxxxxx"

Create Alert

curl -X POST "https://api.opsgenie.com/v2/alerts" \
  -H "Authorization: GenieKey $OPSGENIE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"message": "Server down", "priority": "P1"}'

List Alerts

curl "https://api.opsgenie.com/v2/alerts" -H "Authorization: GenieKey $OPSGENIE_API_KEY"

Acknowledge Alert

curl -X POST "https://api.opsgenie.com/v2/alerts/{alertId}/acknowledge" \
  -H "Authorization: GenieKey $OPSGENIE_API_KEY"

Links

modbender/skill-library-mcp/tree/main/data/opsgenie commit 35677e615f

Frequently asked questions

npx skillmds@latest add modbender/opsgenie