🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

devhelm-mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

devhelm-mcp-server

DevHelm MCP server — AI agent access to monitors, incidents, alerting, and more

pipPyPI
Version
1.4.0
Weekly downloads
315
Maintainers
1

DevHelm MCP Server

Model Context Protocol (MCP) server for DevHelm — gives AI coding assistants (Cursor, Claude Desktop, Windsurf, etc.) access to your uptime monitors, incidents, alerting, and more.

Quick Start

Use the hosted server at mcp.devhelm.io. Two connection modes:

Bearer auth:

URL: https://mcp.devhelm.io/mcp
Authorization: Bearer <your-api-token>

API key in URL (for clients that only accept a URL):

URL: https://mcp.devhelm.io/<your-api-token>/mcp

Local (stdio)

pip install devhelm-mcp-server
export DEVHELM_API_TOKEN=your-token
devhelm-mcp-server

Or with uvx (no install required):

export DEVHELM_API_TOKEN=your-token
uvx devhelm-mcp-server

Cursor / Claude Desktop

Add to your MCP config:

{
  "mcpServers": {
    "devhelm": {
      "url": "https://mcp.devhelm.io/<your-api-token>/mcp"
    }
  }
}

Available Tools

CategoryTools
Monitorslist, get, create, update, delete, pause, resume, test, results, versions
Incidentslist, get, create, resolve, delete
Alert Channelslist, get, create, update, delete, test
Notification Policieslist, get, create, update, delete, test
Environmentslist, get, create, update, delete
Secretslist, create, update, delete
Tagslist, get, create, update, delete
Resource Groupslist, get, create, update, delete, add member, remove member
Webhookslist, get, create, update, delete, test
API Keyslist, create, revoke, delete
Dependencieslist, get, track, delete
Deploy Lockacquire, current, release, force-release
Statusoverview

Development

uv sync
make dev          # Start with MCP Inspector (stdio)
make serve        # Start HTTP server on :8000
make test         # Run unit tests
make lint         # Check formatting
make typecheck    # Run mypy

License

MIT

Keywords

ai-agent

FAQs

Did you know?

Socket

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.

Install

Related posts