keepitalive-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@keepitalive-mcpIs anything down?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
KEEPitALIVE MCP server
Lets an AI agent read and manage your monitoring through the Model Context Protocol — "is anything down?", "why did the nightly backup fail?", "pause the staging monitors while I deploy".
It is a thin adapter over the public v1 API. Everything it can do, your API key could already do; nothing here bypasses a scope.
Install
Add this to your MCP client's config (Claude Desktop:
claude_desktop_config.json; Claude Code: .mcp.json):
{
"mcpServers": {
"keepitalive": {
"command": "npx",
"args": ["-y", "@keepitalive/mcp"],
"env": {
"KEEPITALIVE_API_KEY": "kia_live_...",
"KEEPITALIVE_MCP_MODE": "write",
"KEEPITALIVE_MCP_TOOLS": "",
"KEEPITALIVE_MCP_EXCLUDE_TOOLS": ""
}
}
}
}Only KEEPITALIVE_API_KEY is required; the rest are shown with their defaults
so you can see what is adjustable. MODE picks how much the agent may do,
and TOOLS/EXCLUDE_TOOLS narrow the surface further — all three are
described under Configuration.
Create the key under Settings → API access. Grant it the narrowest set of scopes the work needs — see below.
Related MCP server: uptrack-mcp
What it exposes
One tool per v1 endpoint: monitors, checks, incidents, comments, triggers and their delivery logs, groups, status pages, notification settings, and the account activity feed.
Two endpoints are deliberately absent. /events is an open-ended SSE stream,
which does not fit a request/response tool — poll get_status or
list_open_incidents instead. Channel setup is app-only, so the notification
tools here read channels and set per-monitor routing but cannot add a
destination.
Rate limits
The API allows 60 requests/minute per key. A 429 is absorbed here rather than
shown to the model: the server sends Retry-After, so the client waits that long
and retries once. Only a repeated 429 surfaces, and its message says plainly
that this is a client-side throttle rather than a problem with the monitored
services — an agent that reads "rate limited" as an outage will report one.
A wait longer than 20 seconds is reported instead of slept through, so a tool call never looks like a hang.
An agent auditing a large fleet can still hit the limit: prefer get_summary
and get_status, which answer fleet-wide questions in one request, over
get_monitor per monitor.
Retries and idempotency
Every POST goes out with an Idempotency-Key. A key generated per request only
covers a retry within that one call — if the model re-invokes a tool after a
timeout, that is a new call with a new key, and the server has nothing to match
it against. Pass idempotency_key explicitly and reuse the same value across
the retry to get real replay: the server returns the first response instead of
creating a second monitor or incident. Reusing a key with a changed payload is
rejected rather than silently replayed.
Which of those actually appear is decided by four layers, each able only to remove:
Your key's scopes. The server reads them from
/api/v1/meat startup and registers only tools the key can use. A read-only key gets a read-only server, whatever else is configured.It gates on
effective_scopes— the granted scopes plus everything they imply — so atriggers:writekey also gets the trigger read tools, matching what the API will actually authorize.Mode (
KEEPITALIVE_MCP_MODE) —read,write(default), orfull.Allowlist (
KEEPITALIVE_MCP_TOOLS) — when set, only these tool names.Denylist (
KEEPITALIVE_MCP_EXCLUDE_TOOLS) — removed last.
The effective surface can never exceed what the key already grants, so narrowing here is extra safety rather than the only safety.
Why full is separate from write
write covers everything reversible: creating and editing monitors, pausing and
resuming, opening and closing incidents, toggling triggers. The delete_* tools
are withheld until you set mode=full.
A key wide enough to delete is not by itself a decision to let an agent delete —
those tools remove data with no undo, and an agent reaching for one after
misreading a situation is the failure worth designing against. Deleting a
monitor also takes its history with it; pausing (set_monitor_active) is almost
always what was actually meant.
Configuration
Variable | Default | Purpose |
| — | Required. Your |
|
|
|
| — | Comma-separated allowlist of tool names. |
| — | Comma-separated denylist. |
Read-only example:
{
"env": {
"KEEPITALIVE_API_KEY": "kia_live_...",
"KEEPITALIVE_MCP_MODE": "read"
}
}On startup the server writes its resolved plan, scopes, mode, and every withheld tool with the reason to stderr — your MCP client's log shows exactly what the agent can and cannot do.
Troubleshooting
could not reach …/me — the server checks the key before serving anything,
so this is a bad or revoked key, or no route to the API. It
fails at startup deliberately: a key problem discovered on the first tool call
gets reported by the model as a monitoring outage.
A tool you expected is missing — read the stderr banner. It names the reason, usually a scope the key was not granted.
Development
npm install
npm test # unit + stdio integration tests against a stub API
npm run buildThe tests spawn the real server over stdio and talk to it with the MCP client, against a local stub of the API — no KEEPitALIVE instance required.
The contract
The tool schemas are checked against the API's published OpenAPI document,
fetched from https://keepitalive.dev/api/openapi.json when the tests run.
That is what stops this server offering a field the API would reject — the bugs
that check has caught were all of that shape: a field that looked plausible and
was accepted by nothing.
Because it is fetched rather than vendored, a field added or removed on the API fails the suite the same day instead of whenever someone remembers to refresh a copy. The cost is that these tests need network access. To check against a pre-release deployment:
KEEPITALIVE_CONTRACT_URL=https://example.com/api/openapi.json npm testThis server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityCmaintenanceMCP server for CronAlert uptime monitoring — manage monitors, check results, and incidents from any MCP-compatible AI client.9104MIT

uptrack-mcpofficial
Alicense-qualityDmaintenanceMCP server for Uptrack uptime monitoring. Manage monitors and incidents from AI agents like Claude, ChatGPT, and Cursor.6MIT- Alicense-qualityAmaintenanceMCP server for Kaseya VSA — endpoints, patches, procedures, alarms, and tickets. Enables AI assistants to manage and monitor devices via the Kaseya VSA RMM platform.Apache 2.0
- AlicenseAqualityDmaintenanceMCP server enabling AI assistants to interact with your LogicMonitor, providing 125 tools for comprehensive monitoring and management operations.704712AGPL 3.0
Related MCP Connectors
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
MCP server for AI access to Swagger by SmartBear.
MCP server for AI access to SmartBear tools, including BugSnag, Reflect, Swagger, PactFlow, QTM4J.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/salab3rt/keepitalive-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server