# healthchecksio MCP server

Manage cron/heartbeat checks, read pings and flips, pause/resume/delete on Healthchecks.io.

## Links
- Registry page: https://www.getdrio.com/mcp/io-usefulapi-healthchecksio
- Repository: https://github.com/m190/usefulapi-mcp

## Install
- Endpoint: https://healthchecksio.usefulapi.io/mcp
- Auth: Not captured

## Setup notes
- Remote endpoint: https://healthchecksio.usefulapi.io/mcp

## Tools
- healthchecksio_list_checks (List checks) - List all checks in the project, optionally filtered by slug and/or tags. Returns {checks:[...]} — each check's status, schedule, last ping, and ping URL. Healthchecks: GET /checks/. Endpoint: https://healthchecksio.usefulapi.io/mcp
- healthchecksio_get_check (Get check) - Get a single check by its UUID (or its unique read-only key). Returns the check's full state — status, timeout/schedule, grace, tags, last ping. Healthchecks: GET /checks/{uuid}. Endpoint: https://healthchecksio.usefulapi.io/mcp
- healthchecksio_list_pings (List pings) - List a check's logged pings (100 on the free plan, 1000 on paid), most recent first. Each ping: type, date, n, scheme, remote_addr, method, ua, rid, duration, body_url. Healthchecks: GET /checks/{uuid}/pings/. Endpoint: https://healthchecksio.usefulapi.io/mcp
- healthchecksio_get_ping_body (Get ping body) - Get the logged request body of a single ping, returned as PLAIN TEXT (verbatim, not JSON). Healthchecks: GET /checks/{uuid}/pings/{n}/body. Endpoint: https://healthchecksio.usefulapi.io/mcp
- healthchecksio_list_flips (List flips) - List a check's status changes ("flips") over time — [{timestamp, up}]. Optionally scope by a lookback window or an explicit start/end range. Healthchecks: GET /checks/{uuid}/flips/. Endpoint: https://healthchecksio.usefulapi.io/mcp
- healthchecksio_list_integrations (List integrations) - List the project's notification integrations ("channels") — {channels:[{id, name, kind}]}. The ids are what you assign to a check's `channels` field. Healthchecks: GET /channels/. Endpoint: https://healthchecksio.usefulapi.io/mcp
- healthchecksio_list_badges (List badges) - List the project's status-badge URLs per tag (plus "*" for the overall status) — {badges:{...}}. Healthchecks: GET /badges/. Endpoint: https://healthchecksio.usefulapi.io/mcp
- healthchecksio_create_check (Create check) - CREATES a new check — this MODIFIES live monitoring config. Provide a `timeout` (simple period-based check) OR a `schedule` + `tz` (cron-based check); the two are mutually exclusive. Use `unique` to avoid creating duplicates. Assign notifications via `channels`. Healthchecks: POST /checks/. Returns the created check (201) or the existing match (200). Endpoint: https://healthchecksio.usefulapi.io/mcp
- healthchecksio_update_check (Update check) - UPDATES an existing check by UUID — this MODIFIES live monitoring config. Send only the fields you want to change (timeout and schedule remain mutually exclusive). Healthchecks: POST /checks/{uuid}. Returns the updated check. Endpoint: https://healthchecksio.usefulapi.io/mcp
- healthchecksio_pause_check (Pause check) - PAUSES a check — disables monitoring without deleting it (it stops going down for missed pings until it next receives a ping or is resumed). This MODIFIES live monitoring config. Healthchecks: POST /checks/{uuid}/pause (empty body). Endpoint: https://healthchecksio.usefulapi.io/mcp
- healthchecksio_resume_check (Resume check) - RESUMES a paused check — re-enables monitoring. This MODIFIES live monitoring config. Returns HTTP 409 (surfaced cleanly) if the check is not currently paused. Healthchecks: POST /checks/{uuid}/resume (empty body). Endpoint: https://healthchecksio.usefulapi.io/mcp
- healthchecksio_delete_check (Delete check) - PERMANENTLY DELETES a check by UUID — this MODIFIES live monitoring config and cannot be undone. Healthchecks: DELETE /checks/{uuid}. Returns the deleted check's last known state. Endpoint: https://healthchecksio.usefulapi.io/mcp

## Resources
Not captured

## Prompts
Not captured

## Metadata
- Owner: io.usefulapi
- Version: 1.0.0
- Runtime: Streamable Http
- Transports: HTTP
- License: Not captured
- Language: Not captured
- Stars: Not captured
- Updated: Jul 19, 2026
- Source: https://registry.modelcontextprotocol.io
