analytics
Healthchecks.io MCP, CLI, and Lua Integration for AI Agents
Healthchecks.io integration docs for AI agents: MCP gateway setup, Healthchecks.io CLI commands, Lua API reference, credentials, and function schemas.Healthchecks.io for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Agent Surfaces
Machine-Readable Metadata
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
healthchecks-io.healthchecks_io_list_checks | Read read | 2 | List existing checks Official Healthchecks.io endpoint: GET https://healthchecks.io/api/v3/checks/. |
healthchecks-io.healthchecks_io_get_check | Read read | 1 | Get a single check by UUID or unique key Official Healthchecks.io endpoint: GET https://healthchecks.io/api/v3/checks/{check_id}. |
healthchecks-io.healthchecks_io_create_check | Write write | 1 | Create a new check Official Healthchecks.io endpoint: POST https://healthchecks.io/api/v3/checks/. |
healthchecks-io.healthchecks_io_update_check | Write write | 2 | Update an existing check Official Healthchecks.io endpoint: POST https://healthchecks.io/api/v3/checks/{uuid}. |
healthchecks-io.healthchecks_io_pause_check | Write write | 1 | Pause monitoring of a check Official Healthchecks.io endpoint: POST https://healthchecks.io/api/v3/checks/{uuid}/pause. |
healthchecks-io.healthchecks_io_resume_check | Write write | 1 | Resume monitoring of a check Official Healthchecks.io endpoint: POST https://healthchecks.io/api/v3/checks/{uuid}/resume. |
healthchecks-io.healthchecks_io_delete_check | Write write | 1 | Delete a check Official Healthchecks.io endpoint: DELETE https://healthchecks.io/api/v3/checks/{uuid}. |
healthchecks-io.healthchecks_io_list_pings | Read read | 1 | List a check's logged pings Official Healthchecks.io endpoint: GET https://healthchecks.io/api/v3/checks/{uuid}/pings/. |
healthchecks-io.healthchecks_io_get_ping_body | Read read | 2 | Get a ping's logged body Official Healthchecks.io endpoint: GET https://healthchecks.io/api/v3/checks/{uuid}/pings/{n}/body. |
healthchecks-io.healthchecks_io_list_flips | Read read | 4 | List a check's status changes Official Healthchecks.io endpoint: GET https://healthchecks.io/api/v3/checks/{check_id}/flips/. |
healthchecks-io.healthchecks_io_list_channels | Read read | 0 | List existing integrations/channels Official Healthchecks.io endpoint: GET https://healthchecks.io/api/v3/channels/. |
healthchecks-io.healthchecks_io_list_badges | Read read | 0 | List project's badges Official Healthchecks.io endpoint: GET https://healthchecks.io/api/v3/badges/. |
healthchecks-io.healthchecks_io_get_status | Read read | 0 | Check Healthchecks.io database connectivity Official Healthchecks.io endpoint: GET https://healthchecks.io/api/v3/status/. |
healthchecks-io.healthchecks_io_ping_success_uuid | Read read | 4 | Send a success uuid ping signal Official Healthchecks.io endpoint: POST https://hc-ping.com/{uuid}. |
healthchecks-io.healthchecks_io_ping_start_uuid | Read read | 4 | Send a start uuid ping signal Official Healthchecks.io endpoint: POST https://hc-ping.com/{uuid}/start. |
healthchecks-io.healthchecks_io_ping_fail_uuid | Read read | 4 | Send a fail uuid ping signal Official Healthchecks.io endpoint: POST https://hc-ping.com/{uuid}/fail. |
healthchecks-io.healthchecks_io_ping_log_uuid | Read read | 4 | Send a log uuid ping signal Official Healthchecks.io endpoint: POST https://hc-ping.com/{uuid}/log. |
healthchecks-io.healthchecks_io_ping_exit_status_uuid | Read read | 5 | Send a exit status uuid ping signal Official Healthchecks.io endpoint: POST https://hc-ping.com/{uuid}/{exit_status}. |
healthchecks-io.healthchecks_io_ping_success_slug | Read read | 6 | Send a success slug ping signal Official Healthchecks.io endpoint: POST https://hc-ping.com/{ping_key}/{slug}. |
healthchecks-io.healthchecks_io_ping_start_slug | Read read | 6 | Send a start slug ping signal Official Healthchecks.io endpoint: POST https://hc-ping.com/{ping_key}/{slug}/start. |
healthchecks-io.healthchecks_io_ping_fail_slug | Read read | 6 | Send a fail slug ping signal Official Healthchecks.io endpoint: POST https://hc-ping.com/{ping_key}/{slug}/fail. |
healthchecks-io.healthchecks_io_ping_log_slug | Read read | 6 | Send a log slug ping signal Official Healthchecks.io endpoint: POST https://hc-ping.com/{ping_key}/{slug}/log. |
healthchecks-io.healthchecks_io_ping_exit_status_slug | Read read | 7 | Send a exit status slug ping signal Official Healthchecks.io endpoint: POST https://hc-ping.com/{ping_key}/{slug}/{exit_status}. |