analytics
Healthchecks.io MCP Gateway for AI Agents
Expose Healthchecks.io tools to Claude Code, Cursor, Codex, and other MCP clients through the local KosmoKrator MCP gateway.Healthchecks.io MCP Gateway
Expose Healthchecks.io to MCP clients with `kosmokrator mcp:serve --integration=healthchecks-io`.
If the client has never used KosmoKrator before, install it first, then register this integration as a stdio MCP server.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash kosmokrator mcp:gateway:install --integration=healthchecks-io --write=deny --json {
"mcpServers": {
"kosmokrator-healthchecks-io": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=healthchecks-io",
"--write=deny"
]
}
}
} kosmokrator mcp:serve --integration=healthchecks-io --write=deny Client Notes
Use one scoped MCP gateway entry, then adapt the config location to the client or framework.
MCP Tool Names
KosmoKrator exposes integration tools through the gateway with stable names.
| MCP tool | Source function | Type |
|---|---|---|
integration__healthchecks_io__healthchecks_io_list_checks | healthchecks-io.healthchecks_io_list_checks | Read read |
integration__healthchecks_io__healthchecks_io_get_check | healthchecks-io.healthchecks_io_get_check | Read read |
integration__healthchecks_io__healthchecks_io_create_check | healthchecks-io.healthchecks_io_create_check | Write write |
integration__healthchecks_io__healthchecks_io_update_check | healthchecks-io.healthchecks_io_update_check | Write write |
integration__healthchecks_io__healthchecks_io_pause_check | healthchecks-io.healthchecks_io_pause_check | Write write |
integration__healthchecks_io__healthchecks_io_resume_check | healthchecks-io.healthchecks_io_resume_check | Write write |
integration__healthchecks_io__healthchecks_io_delete_check | healthchecks-io.healthchecks_io_delete_check | Write write |
integration__healthchecks_io__healthchecks_io_list_pings | healthchecks-io.healthchecks_io_list_pings | Read read |
integration__healthchecks_io__healthchecks_io_get_ping_body | healthchecks-io.healthchecks_io_get_ping_body | Read read |
integration__healthchecks_io__healthchecks_io_list_flips | healthchecks-io.healthchecks_io_list_flips | Read read |
integration__healthchecks_io__healthchecks_io_list_channels | healthchecks-io.healthchecks_io_list_channels | Read read |
integration__healthchecks_io__healthchecks_io_list_badges | healthchecks-io.healthchecks_io_list_badges | Read read |
integration__healthchecks_io__healthchecks_io_get_status | healthchecks-io.healthchecks_io_get_status | Read read |
integration__healthchecks_io__healthchecks_io_ping_success_uuid | healthchecks-io.healthchecks_io_ping_success_uuid | Read read |
integration__healthchecks_io__healthchecks_io_ping_start_uuid | healthchecks-io.healthchecks_io_ping_start_uuid | Read read |
integration__healthchecks_io__healthchecks_io_ping_fail_uuid | healthchecks-io.healthchecks_io_ping_fail_uuid | Read read |
integration__healthchecks_io__healthchecks_io_ping_log_uuid | healthchecks-io.healthchecks_io_ping_log_uuid | Read read |
integration__healthchecks_io__healthchecks_io_ping_exit_status_uuid | healthchecks-io.healthchecks_io_ping_exit_status_uuid | Read read |
integration__healthchecks_io__healthchecks_io_ping_success_slug | healthchecks-io.healthchecks_io_ping_success_slug | Read read |
integration__healthchecks_io__healthchecks_io_ping_start_slug | healthchecks-io.healthchecks_io_ping_start_slug | Read read |
integration__healthchecks_io__healthchecks_io_ping_fail_slug | healthchecks-io.healthchecks_io_ping_fail_slug | Read read |
integration__healthchecks_io__healthchecks_io_ping_log_slug | healthchecks-io.healthchecks_io_ping_log_slug | Read read |
integration__healthchecks_io__healthchecks_io_ping_exit_status_slug | healthchecks-io.healthchecks_io_ping_exit_status_slug | Read read |
Write Access
Start with --write=deny for read-only MCP clients. Use --write=ask or
--write=allow only when the client and workspace are trusted.