Healthchecks.io MCP
- ✓Open-source license (MIT)
- ✓Actively maintained (<30d)
- ✓Documented (README)
git clone https://github.com/ronniechong/healthchecks-io-mcp{
"mcpServers": {
"healthchecks-io-mcp": {
"command": "node",
"args": ["/path/to/healthchecks-io-mcp/dist/index.js"]
}
}
}Resumen de MCP Servers
# @digitalronin/healthchecks-io-mcp
> **Unofficial, unaffiliated with Healthchecks.io.** This is a third-party
> MCP server, not an official Healthchecks.io product.
## What this is
[Healthchecks.io](https://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](https://healthchecks.io/docs/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.
## Setup
### 1. Get a Healthchecks.io API key
1. Log in to [healthchecks.io](https://healthchecks.io) (or your
self-hosted instance, see below).
2. Go to your project's **Settings** page, then the **API Access** tab.
3. You'll see two keys: a **read-only** key and a **read-write** key.
- The **read-only** key can look up your checks, but can't create,
change, pause, or delete anything.
- The **read-write** key can do everything the read-only key can, plus
create, update, pause, resume, and **permanently delete** checks.
### 2. Add this server to your MCP client's config
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):
```json
{
"mcpServers": {
"healthchecks-io": {
"command": "npx",
"args": ["@digitalronin/healthchecks-io-mcp"],
"env": {
"HEALTHCHECKS_API_KEY": "your-key-here"
}
}
}
}
```
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.
### 3. Try it out
Once connected, just ask your AI assistant something like:
- "List all my Healthchecks.io checks"
- "Show me the ping history for my nightly-backup check"
- "Is my staging-cron check currently failing?"
If it responds with real data from your account, you're set up correctly.
### Optional: multiple projects
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:
```json
{
"mcpServers": {
"healthchecks-io-personal": {
"command": "npx",
"args": ["@digitalronin/healthchecks-io-mcp"],
"env": {
"HEALTHCHECKS_API_KEY": "personal-project-key-here"
}
},
"healthchecks-io-work": {
"command": "npx",
"args": ["@digitalronin/healthchecks-io-mcp"],
"env": {
"HEALTHCHECKS_API_KEY": "work-project-key-here"
}
}
}
}
```
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.
### Optional: self-hosted Healthchecks.io
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:
```json
"env": {
"HEALTHCHECKS_API_KEY": "your-key-here",
"HEALTHCHECKS_BASE_URL": "https://monitoring.example.com/api/v3"
}
```
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.
## What it can do
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. |
## Technical reference
For each tool, this table gives its underlying Healthchecks.io API
endpoint:
| Tool | Requires read-write key? | Healthchecks.io API endpoint |
| ------------------- | ------------------------ | ------------------------------------------------------------------------------------------ |
| `list_checks` | No | [`GET /api/v3/checks/`](https://healthchecks.io/docs/api/#list-checks) |
| `get_check` | No | [`GET /api/v3/checks/{uuid}`](https://healthchecks.io/docs/api/#get-check) |
| `list_check_pings` | Yes | [`GET /api/v3/checks/{uuid}/pings/`](https://healthchecks.io/docs/api/#list-pings) |
| `list_check_flips` | No | [`GET /api/v3/checks/{uuid}/flips/`](https://healthchecks.io/docs/api/#list-flips) |
| `list_integrations` | Yes | [`GET /api/v3/channels/`](https://healthchecks.io/docs/api/#list-channels) |
| `list_badges` | No | [`GET /api/v3/badges/`](https://healthchecks.io/docs/api/#list-badges) |
| `create_check` | Yes | [`POST /api/v3/checks/`](https://healthchecks.io/docs/api/#create-check) |
| `update_check` | Yes | [`POST /api/v3/checks/{uuid}`](https://healthchecks.io/docs/api/#update-check) |
| `pause_check` | Yes | [`POST /api/v3/checks/{uuid}/pause`](https://healthchecks.io/docs/api/#pause-monitoring) |
| `resume_check` | Yes | [`POST /api/v3/checks/{uuid}/resume`](https://healthchecks.io/docs/api/#reLo que la gente pregunta sobre healthchecks-io-mcp
¿Qué es ronniechong/healthchecks-io-mcp?
+
ronniechong/healthchecks-io-mcp es mcp servers para el ecosistema de Claude AI. Healthchecks.io MCP Tiene 0 estrellas en GitHub y su última actualización registrada es del 2026-08-18.
¿Cómo se instala healthchecks-io-mcp?
+
Puedes instalar healthchecks-io-mcp clonando el repositorio (https://github.com/ronniechong/healthchecks-io-mcp) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.
¿Es seguro usar ronniechong/healthchecks-io-mcp?
+
Nuestro agente de seguridad ha analizado ronniechong/healthchecks-io-mcp y le ha asignado un Trust Score de 82/100 (tier: Trusted). Revisa el desglose completo de comprobaciones superadas y flags en esta página.
¿Quién mantiene ronniechong/healthchecks-io-mcp?
+
ronniechong/healthchecks-io-mcp es mantenido por ronniechong. La última actividad registrada en GitHub es del 2026-08-18, con 0 issues abiertos.
¿Hay alternativas a healthchecks-io-mcp?
+
Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.
Despliega healthchecks-io-mcp en tu cloud
Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.
¿Mantienes este repo? Añade un badge a tu README
Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.
[](https://claudewave.com/repo/ronniechong-healthchecks-io-mcp)<a href="https://claudewave.com/repo/ronniechong-healthchecks-io-mcp"><img src="https://claudewave.com/api/badge/ronniechong-healthchecks-io-mcp" alt="Featured on ClaudeWave: ronniechong/healthchecks-io-mcp" width="320" height="64" /></a>Más MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
The fastest path to AI-powered full stack observability, even for lean teams.
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!