Unofficial MCP server for managing Healthchecks.io checks via the Management API
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Unofficial, unaffiliated with Healthchecks.io. This is a third-party MCP server, not an official Healthchecks.io product.
Healthchecks.io is a "dead man's switch" style monitoring service: your scheduled jobs (cron jobs, backups, batch scripts, anything that's supposed to run on a schedule) ping it when they run, and Healthchecks.io alerts you if a ping doesn't show up on time β meaning the job silently failed or never ran.
This package is an MCP server β a small local program that lets an AI assistant like Claude talk to Healthchecks.io's Management API on your behalf. Once it's set up, you can ask your AI assistant things like "list my Healthchecks.io checks," "show me the ping history for my backup job," or "pause monitoring for my staging environment" in plain English, and it will call the right Healthchecks.io API endpoint for you.
You don't need to install anything manually β npx will download and run
it automatically the first time it's used. Add this block to your MCP
client's configuration (for Claude Code, this is a .mcp.json file; other
clients have their own config file or UI for this):
Replace "your-key-here" with the API key from step 1. Restart your MCP
client (or reload its MCP connections) after saving this β most clients
only pick up new/changed servers on restart.
Once connected, just ask your AI assistant something like:
If it responds with real data from your account, you're set up correctly.
Healthchecks.io API keys are scoped per project, so a single server entry only ever talks to one project. To work with more than one, register the server multiple times under different names, each with its own key:
Each entry runs its own process holding a single key, and MCP clients namespace tools by server name, so you can tell which project a tool call is hitting.
Healthchecks.io is open source, and some people run their own instance instead of using the hosted SaaS service at healthchecks.io. If that's you, add a second environment variable pointing at your instance's API root:
The URL must be the full API root, including the /api/v3 path
segment, with no trailing slash β e.g.
https://monitoring.example.com/api/v3, not
https://monitoring.example.com or
https://monitoring.example.com/api/v3/. Getting this wrong will make
every tool call fail with a "not found" error, since the server appends
paths like /checks/ directly onto whatever you set here. If you leave
HEALTHCHECKS_BASE_URL unset, it defaults to the real
https://healthchecks.io/api/v3.
If your self-hosted instance isn't behind HTTPS, the server will print a
warning (but still run) β your API key is sent as a request header on
every call, so an http:// URL means that key travels in plaintext over
the network to your instance.
This server exposes 11 "tools" that your AI assistant can call. They fall into two groups:
Read tools β safe, look-up-only, never change anything:
| Tool | What it does |
|---|---|
list_checks | List every check in your account. |
get_check | Get full details for one specific check. |
list_check_pings | Show the recent ping history for a check (when it pinged in, success/fail/etc). Requires a read-write key β see note below. |
list_check_flips | Show when a check's status changed (e.g. went from healthy to failing, or back). |
list_integrations | List your configured notification integrations (Slack, email, etc). Requires a read-write key β see note below. |
list_badges | Get the badge image URLs Healthchecks.io generates for each of your tags (useful for status pages/dashboards). |
Mutating tools β these change things in your account, and all of them require a read-write API key:
| Tool | What it does |
|---|---|
create_check | Create a new check (e.g. "create a check called nightly-backup that expects a ping every 24 hours"). Can optionally be told to match on existing fields (like the check's name) and update that check instead of creating a duplicate β useful if a job might register itself more than once. |
update_check | Change an existing check's settings. Only the fields you specify are changed β anything you don't mention stays as it was. |
pause_check | Temporarily stop monitoring a check, without deleting it. Requires explicit confirmation β see below. |
resume_check | Resume monitoring on a paused check. |
delete_check | Permanently delete a check β this cannot be undone. Requires explicit confirmation β see below. |
For each tool, this table gives its underlying Healthchecks.io API endpoint:
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/healthchecks-io-mcp)<a href="https://allmcps.com/mcp/healthchecks-io-mcp"><img src="https://allmcps.com/api/badge/healthchecks-io-mcp?style=directory" alt="Healthchecks IO MCP on AllMCPs" /></a>