Create and manage monitors
Ask your AI tool to add monitors for a new API, update check intervals, review monitor configuration, or remove checks that no longer matter.
Hosted MCP server for AlertsDown
AlertsDown exposes your monitoring workspace through a hosted MCP server, so Claude Code, Codex, Cursor, Windsurf, and compatible LLM clients can create checks, review status, and help investigate downtime without leaving your development workflow.
https://api.alertsdown.com/api/mcp
What it is
MCP, or Model Context Protocol, gives AI assistants a standard way to call external tools. Instead of copying URLs, screenshots, and incident details into a chat, you connect your LLM client to AlertsDown once. After that, the assistant can use live monitoring context while it helps you ship code or respond to outages.
The hosted AlertsDown MCP server removes the operational work. There is no local bridge to deploy, no custom script to keep alive, and no separate reliability layer to maintain. Your AI client connects to the AlertsDown endpoint, authenticates with your API key, and works with the same monitoring data you use in the dashboard.
What you can do
Ask your AI tool to add monitors for a new API, update check intervals, review monitor configuration, or remove checks that no longer matter.
Let the assistant pull monitor status, recent failures, and response history while it reads logs, checks code changes, or prepares a recovery plan.
After a deploy, ask the LLM to verify the public website, API health check, checkout flow, or status page monitor before you move on.
Use live monitor data to draft incident notes, maintenance summaries, follow-up tasks, or customer updates with less manual copying.
Setup
Hosted MCP is available on supported paid plans. Once your account has access, create an MCP API key from your account dashboard and use the configuration for your client.
Pick a supported paid plan so your account can create a per-user hosted MCP API key.
Open your account dashboard, create the key, and store the secret in an environment variable such as ALERTSDOWN_MCP_API_KEY.
Use the hosted endpoint and pass your key as a bearer token. Restart desktop clients after changing environment variables.
Use the HTTP transport and pass the AlertsDown key as a bearer token.
export ALERTSDOWN_MCP_API_KEY="admcp_your_secret_here"
claude mcp add --transport http alertsdown https://api.alertsdown.com/api/mcp \
--header "Authorization: Bearer $ALERTSDOWN_MCP_API_KEY" \
--scope user
Point Codex at the hosted endpoint and keep the secret in an environment variable.
export ALERTSDOWN_MCP_API_KEY="admcp_your_secret_here"
codex mcp add alertsdown \
--url https://api.alertsdown.com/api/mcp \
--bearer-token-env-var ALERTSDOWN_MCP_API_KEY
Add this to .cursor/mcp.json or ~/.cursor/mcp.json after setting ALERTSDOWN_MCP_API_KEY.
{
"mcpServers": {
"alertsdown": {
"url": "https://api.alertsdown.com/api/mcp",
"headers": {
"Authorization": "Bearer ${env:ALERTSDOWN_MCP_API_KEY}"
}
}
}
}
Add this to ~/.codeium/windsurf/mcp_config.json and restart Windsurf.
{
"mcpServers": {
"alertsdown": {
"serverUrl": "https://api.alertsdown.com/api/mcp",
"headers": {
"Authorization": "Bearer ${env:ALERTSDOWN_MCP_API_KEY}"
}
}
}
}
Use endpoint https://api.alertsdown.com/api/mcp with Authorization: Bearer <api-key>.
Clients that prefer headers can also send x-api-key: <api-key>.
How to use it
"Add uptime monitoring for the production API and alert me if it stops returning 200."
"Show me which monitored endpoints failed after the last deployment."
"Review my monitors and suggest missing checks for this SaaS project."
"Check whether the checkout, webhook receiver, and status page are healthy before I announce this release."
Hosted MCP lets AI clients use AlertsDown. MCP Server Monitoring is the separate alerts feature for checking your own or vendor MCP endpoints, expected tools, resources, prompts, and safe probes.
It is an AlertsDown-hosted Model Context Protocol endpoint that lets AI coding tools manage your AlertsDown monitoring workspace through authenticated tools.
Hosted MCP lets your AI client connect to AlertsDown. MCP alerts are a separate feature for monitoring your own or vendor MCP servers and receiving alerts when they break.
AlertsDown supports clients that can connect to a Streamable HTTP MCP server, including Claude Code, Codex, Cursor, Windsurf, and other compatible MCP clients.
No. AlertsDown hosts the MCP endpoint. Create an MCP API key in your account and configure your client to send it as a bearer token.
Your assistant can help create monitors, review status, inspect downtime history, and use live uptime context while you work on incidents or deployments.