
Security News
Risky Biz Podcast: Making Reachability Analysis Work in Real-World Codebases
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
mcp-opsgenie
Advanced tools
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.
This MCP server provides comprehensive Opsgenie integration with the following tools:
git clone https://github.com/HainanZhao/mcp-opsgenie.git
cd mcp-opsgenie
npm run setup
# Edit .env and add your OPSGENIE_API_KEY
npm test
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
Create a .env
file with your Opsgenie API key:
OPSGENIE_API_KEY=your_opsgenie_api_key_here
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:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
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:
Use Opsgenie's powerful query syntax:
status:open
- Open alerts onlypriority:P1
- P1 priority alertstag:production
- Alerts with "production" tagteam:"Backend Team"
- Alerts for specific teamcreatedAt>"2024-01-01"
- Alerts after a datestatus:open AND priority:P1
- Combine conditions"Authentication failed"
.env
file"Cannot find module"
npm install
to install dependenciesnpm run build
to compile TypeScript"No alerts found"
api.opsgenie.com
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
See CONTRIBUTING.md for development setup and contribution guidelines.
MIT License - see LICENSE file for details.
FAQs
MCP server for Opsgenie integration
The npm package mcp-opsgenie receives a total of 185 weekly downloads. As such, mcp-opsgenie popularity was classified as not popular.
We found that mcp-opsgenie demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.