Healthchecks.io MCP
About
Unofficial MCP server that manages Healthchecks.io checks via its Management API.
Details
- Author
- ronniechong
- Categories
- Developer Tools
Jump to
Setup
Install Healthchecks.io MCP in your MCP client (Claude Desktop, Cursor, Windsurf, and others).
Repository: https://github.com/ronniechong/healthchecks-io-mcp
Follow the installation instructions in the repository README, then restart your MCP client.
Unofficial, unaffiliated with Healthchecks.io.This is a third-party MCP server, not an official Healthchecks.io product.
This package is anMCP server— a small local program that lets an AI assistant like Claude talk to Healthchecks.io'sManagement APIon 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.
- Log in tohealthchecks.io(or your self-hosted instance, see below).
- Go to your project'sSettingspage, then theAPI Accesstab.
- You'll see two keys: aread-onlykey and aread-writekey.
- Theread-onlykey can look up your checks, but can't create, change, pause, or delete anything.
- Theread-writekey can do everything the read-only key can, plus create, update, pause, resume, andpermanently deletechecks.
2. Add this server to your MCP client's config
You don't need to install anything manually —npxwill 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.jsonfile; other clients have their own config file or UI for this):
{ "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.
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.
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:
{ "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.
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:
"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/v3path segment, withno trailing slash— e.g.https://monitoring.example.com/api/v3, nothttps://monitoring.example.comorhttps://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 leaveHEALTHCHECKS_BASE_URLunset, it defaults to the realhttps://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 anhttp://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:
Mutating tools— these change things in your account, and all of them require aread-writeAPI key:
For each tool, this table gives its underlying Healthchecks.io API endpoint:
This is a web browser that enables your coding agent, such as Claude Code, to visit websites on your behalf and assist you in identifying bugs or creating UI test cases.
Create crafted UI components inspired by the best 21st.dev design engineers.
Bring agent evaluations, observability, and synthetic test set generation directly into your IDE for free with Galileo's new MCP server
An MCP server to help AI assistants to answer questions and generate AccelByte Extend SDK code more effectively .
MCP server for AI Diagram Maker — generate beautiful software engineering diagrams directly inside Cursor, Claude Desktop, Claude Code, or any MCP-compatible AI agent
ALAPI MCP Tools,Call hundreds of API interfaces via MCP
AI-powered SVG animation generator that transforms static files into animated SVG components using the Allyson platform
MCP server that gives AI assistants on-demand access to 1,500+ amCharts docs, ~300 code examples, and 1000+ class API references.
APIMatic MCP Server is used to validate OpenAPI specifications using APIMatic. The server processes OpenAPI files and returns validation summaries by leveraging APIMatic’s API.
One shared context layer for AI agents and humans — live API specs, DB schemas, and versioned contracts across repos so every agent and teammate works from the same source of truth.
Build and deploy full-stack Next.js apps with 98 tools for React, AWS, and MongoDB
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.





