uptimepage
OfficialEnables sending alert notifications for monitor failures and recoveries to Discord channels.
Provides authentication via GitHub OAuth to sign into the uptimepage dashboard.
Provides authentication via Google OAuth to sign into the uptimepage dashboard.
Enables sending alert notifications for monitor failures and recoveries to ntfy topics.
Enables sending alert notifications for monitor failures and recoveries to PagerDuty.
Enables sending alert notifications for monitor failures and recoveries to Slack channels via webhook.
Enables sending alert notifications for monitor failures and recoveries to Telegram chats.
Allows managing monitors, notification channels, and other resources as code using the official Terraform provider.
Enables sending alert notifications for monitor failures and recoveries to WhatsApp.
uptimepage
Status pages + uptime monitoring. Open source, free to start. Live in 5 minutes.
Monitor HTTP, TCP, ICMP ping, cron-job heartbeats, DNS, TLS-certificate and domain expiry, plus scripted browser login flows, from multiple regions — then turn green and red into a polished public status page your customers can subscribe to. Drive it by click, REST API, or Terraform. Self-host the single binary or use the hosted service.
Try it free → · Docs · Self-host · Terraform · MCP
Quick start
Hosted, no install:
Sign up at uptimepage.dev with GitHub or Google — no card.
Add a monitor: paste a URL, pick a check type and interval, save.
Bind a notification channel (Slack, email, PagerDuty, …) so failures reach you.
Turn on a public status page and share the link.
Prefer code? Drive the same account by REST API, Terraform, or MCP. Want to run it yourself? Go to Self-host.
Related MCP server: Grafana UI MCP Server
Why uptimepage
Monitoring with a built-in status page isn't new — the bet here is doing it free, self-hostable, and fully as code:
Free hosted tier, no card — and AGPL if you'd rather run it yourself.
One self-contained binary —
docker compose upand you're live, not a Kubernetes platform to operate.Everything as code — REST API, scoped tokens, an official Terraform provider, and an MCP server your LLM can query.
Probes you own — run multi-region agents wherever your users are, on your own boxes.
Status page + incidents + alerting in one — components, subscribers, and multi-channel paging that repeats until acknowledged, no second tool.
Core isn't paywalled — checks, status pages, subscribers, the API and every alert channel are in the free tier.
Who it's for
Founders / small SaaS — a professional status page in minutes, free, no self-host headache.
Platform / SRE leads — monitors as code, multi-region probes, incident paging to your on-call channels, without vendor sprawl.
Self-hosters — one binary plus two databases, no SaaS lock-in.
Live status
uptimepage monitors itself. These badges are served by the running app from a public status page — no third-party service, no cron job updating a JSON file.
Surface | HTTP | DNS | TLS cert | Domain |
uptimepage.dev (website) | ||||
app.uptimepage.dev (dashboard) | ||||
mcp.uptimepage.dev (MCP) |
Embed your own with the snippet in Settings → Pages → your page → Badge.
Features
Checks | HTTP, TCP, ICMP ping, heartbeat (inbound dead-man's-switch), DNS, TLS-cert expiry, domain expiry, browser login flow with per-step timings — per-host circuit breaking, designed for ~50k concurrent in-flight |
Public status page | HTML + JSON + RSS, per-component opt-in, incident narration, maintenance windows, email + webhook subscribers |
Alerting | Slack, PagerDuty, Discord, Microsoft Teams, Google Chat, Telegram, WhatsApp, SMS, email, webhook, ntfy, Pushover — per-org channels, sealed secrets, fire-once + recovery, repeat until acknowledged |
Incidents | Internal incident state ⊥ public phase, acknowledge to silence paging, per-monitor reminder cadence |
Multi-region | Regional probe agents, per-region views, run your own agent anywhere |
Automation | REST API, scoped API tokens, Terraform provider, MCP server for LLM clients |
Built on | Rust 1.95 / Tokio / Axum, Postgres + ClickHouse, one ~23 MB self-contained binary |
Live service: https://uptimepage.dev — hosted, free, sign in with GitHub or Google. Full docs: https://uptimepage.dev/docs
Check types
Type | Purpose | Default interval | Floor |
| request a URL, match status / body / latency | 60 s |
|
| open a TCP socket within a timeout | 60 s |
|
| ICMP echo request, fail on a missing reply | 60 s |
|
| your job pings a URL; a missing ping past period + grace opens an incident | 60 s |
|
| resolve a record, optionally match a value | 60 s |
|
| open TLS, parse leaf cert, alert before | 86 400 s (daily) |
|
| query RDAP, alert before the domain's | 86 400 s (daily) |
|
| drive a headless browser through login / transaction steps, assert the result | 300 s |
|
tls_cert and domain_expiry use warn_days / critical_days thresholds and surface days_remaining plus registrar / cert subject in the result payload. Their floors are 1 hour for tls_cert and 12 hours for domain_expiry, regardless of plan — these probes track values that change on a scale of days, not minutes, and RDAP rate-limits by source address. flow runs a real browser, so it only executes where a browser engine is available (its regions clamp to the flow-capable set) and the number of flow monitors is capped per plan; put credentials in an org secret and reference them as {{name}}. Every flow run is kept with each step's outcome and duration, and the monitor page charts each step on its own scale, so a wait drifting from 200 ms to four seconds shows up long before the journey fails. A self-hosted install starts with that cap at 0; docs/monitor-types.md covers turning it on. See docs/api.md for the full payload shapes.
Public status page
A customer-facing /status page (HTML + JSON + RSS 2.0) is built into the binary. Per-target opt-in via public_status; the page bypasses basic auth at the Caddy layer with a per-IP rate limit, caches for 10 s in-process, and degrades gracefully if ClickHouse is unreachable. Operators narrate incidents (PATCH /api/v1/incidents/{id}, POST /api/v1/incidents/{id}/updates) and schedule maintenance windows (POST /api/v1/maintenance). Visitors subscribe for email or webhook updates. See docs/public-status.md.
Alerting
Notification channels are per-org resources (Slack incoming webhook, generic
HTTP webhook, Telegram bot, SMS gateway, …) created via /api/v1/notification-channels.
Transport secrets are sealed at rest and never echoed back.
A target opts in by binding one or more channels in its alerts array:
"alerts": [
{ "channel_id": "0192…", "after_failures": 3 },
{ "channel_id": "0193…", "after_failures": 6, "notify_recovery": false }
]Fire-once + recovery semantics. Channels are tenant-isolated — a target can only bind a channel its own org owns. See docs/api.md for the full contract.
Multi-region
Run probe agents in the regions your users live in; the control plane assigns checks per region and the dashboard and status page can be viewed per-region. Bring your own agent anywhere — a single binary with an org-scoped token. See docs/multi-region.md.
Terraform
Manage targets and notification channels as code with the official provider
uptimepage/uptimepage
(source):
terraform {
required_providers {
uptimepage = {
source = "uptimepage/uptimepage"
}
}
}
provider "uptimepage" {
token = var.uptimepage_token # or set UPTIMEPAGE_TOKEN
org = "your-org-slug" # required for managed resources; or UPTIMEPAGE_ORG
# endpoint defaults to https://app.uptimepage.dev; set it for a self-hosted instance
}
resource "uptimepage_target" "api" {
name = "api prod"
interval = 60
check = {
type = "http"
http = {
url = "https://example.com/healthz"
expected_status = { kind = "exact", exact = 200 }
}
}
}MCP server
An MCP server lets an LLM client (the claude.ai connector, Claude Desktop, an IDE) answer questions about one org's monitors and take a few guarded actions, over Streamable HTTP at /mcp. Fifteen read-only tools plus ten write tools (each scope-gated, confirmed per action, and audited; a client that can't show a confirmation is offered the read tools only). Auth is an org-bound scoped token — paste one by hand, or use the one-click OAuth 2.1 connector. Off by default; enable with UPTIMEPAGE_MCP_ENABLED=true (+ MCP_OAUTH_ENABLED for the connector). See docs/mcp.md.
Self-host
I want to | Go to |
Try it with one command | |
Run it for real, with TLS and auth | |
Build the image myself (ARM host, or code changes) | |
Skip Docker and run the binary |
Docker (recommended)
Three steps. No Rust toolchain and no compile step.
1. Start it
docker compose up -dPulls ghcr.io/uptimepage/uptimepage:latest and starts Postgres 18, ClickHouse 26.3, and the monitor. Both databases run their own migrations at startup, so there is nothing to wire up.
2. Create your account
docker compose exec uptimepage uptimepage bootstrap-owner --email you@example.comPrints a one-time sign-in link, a full-access API token, and your org slug. These appear once, so copy them before closing the terminal.
3. Sign in and add a monitor
Open the link from step 2. That drops you into the dashboard at http://localhost:8080, where you can add your first monitor.
To stop: docker compose down, or docker compose down -v to delete the data too.
This stack has no TLS and no auth in front of it, and it publishes the database ports. Great for trying it out, not safe on the open internet. To run it for real, see Production deployment.
Options
Pin a version. Set UPTIMEPAGE_IMAGE=ghcr.io/uptimepage/uptimepage:v1.0.0 to stay on a release instead of latest.
On an ARM host? Published images are linux/amd64. See Build from source.
Signing in later. The bootstrap link works once. For repeat sign-in, and to invite a team, set up GitHub or Google OAuth, or an email provider for magic links ([auth.github], [auth.google], [email] in config/default.toml, or the matching env vars). See docs/authentication.md.
Packaging this for an app store? Step 2 needs a terminal. Set UPTIMEPAGE_BOOTSTRAP__EMAIL instead and the first boot seeds that owner and logs a sign-in link, no shell required. See First-run owner.
Use the token and org slug from step 2. Create a monitor:
curl -X POST http://127.0.0.1:8080/api/v1/targets \
-H 'authorization: Bearer <token>' \
-H 'x-uptimepage-org: <org-slug>' \
-H 'content-type: application/json' \
-d '{
"name": "example",
"check": {
"type": "http",
"url": "https://example.com/",
"method": "GET",
"timeout": 5000,
"follow_redirects": false,
"max_redirects": 0,
"expected_status": { "kind": "exact", "value": 200 },
"headers": {},
"verify_tls": true
},
"interval": 180,
"enabled": true,
"tags": []
}'interval is in seconds and has to meet the plan minimum, which is 180 on the free plan a fresh self-host starts on. Anything lower returns 422 MIN_CHECK_INTERVAL.
Read uptime and scrape metrics:
curl -H 'authorization: Bearer <token>' -H 'x-uptimepage-org: <org-slug>' \
http://127.0.0.1:8080/api/v1/targets/<id>/uptime
curl http://127.0.0.1:9090/metricsProduction deployment
Anything reachable from the internet should run this stack, not the one above. It adds a Caddy edge with automatic TLS, basic auth on the operator host, internal-only Postgres and ClickHouse, per-IP rate limits, and blue/green restarts. It pulls the same published image. Setup runbook is in deployment/README.md, with the architecture in docs/deployment.md.
Kubernetes
kubectl create namespace uptimepage
kubectl -n uptimepage create secret generic uptimepage \
--from-literal=fingerprint-salt="$(openssl rand -base64 32)" \
--from-literal=credentials-kek-base64="$(openssl rand -base64 32)" \
--from-literal=postgres-url='postgres://uptimepage:pw@pg.internal:5432/uptimepage?sslmode=require' \
--from-literal=clickhouse-password='pw'
helm install uptimepage oci://ghcr.io/uptimepage/charts/uptimepage \
--namespace uptimepage \
--set domain=status.example.com \
--set clickhouse.url=https://ch.internal:8443 \
--set secrets.existingSecret=uptimepage \
--set postgresql.existingSecret=uptimepage \
--set clickhouse.existingSecret=uptimepageBring your own Postgres 18 and ClickHouse; the chart ships neither. A second chart, uptimepage-agent, runs a probe on its own in another region or inside a private network, against this or the hosted service. Details in docs/kubernetes.md and charts/.
Build from source
Published images are linux/amd64. Build from this checkout when you are on an ARM host (Apple silicon, Ampere), or when you are changing the code:
docker compose -f docker-compose.yml -f compose.build.yml up -d --buildSame stack and the same three steps as Docker, only the image origin differs. Note that your local build then owns that image tag, so run docker compose pull when you want the published image back.
Run without Docker
cargo build --release
./target/release/uptimepageRequires Postgres and ClickHouse reachable at the URLs in config/default.toml, plus a non-empty fingerprint salt (the app refuses to boot without one):
export UPTIMEPAGE_AUTH__FINGERPRINT_SALT=$(openssl rand -base64 32)To run against the compose stack without rebuilding the container:
docker compose up -d postgres clickhouse
cargo run --releaseDocs
Hosted: https://uptimepage.dev/docs
Sources under docs/ — readable directly on GitHub too:
File | Covers |
goals, module layout, data flow, key design choices, concurrency model | |
REST endpoints, check-spec payload shapes, result + uptime queries | |
operator guide to the public | |
sign-in, sessions, scoped API tokens, org binding | |
regional probe agents, the operator surface, running an agent, per-region views | |
MCP server for LLM clients: tools, scopes, OAuth connector, enabling, examples | |
| |
Prometheus series (incl. connect / TLS / pool gauges), OpenTelemetry tracing | |
Docker, bind addresses, migrations, sizing, graceful shutdown | |
local dev workflow, the web UI (stack, routes, adding a page, tests), faster builds | |
| |
Criterion micro-benchmarks, single-core throughput, profile breakdown | |
common failures and how to read them off metrics |
Web UI
The single binary serves both the /api/v1/* JSON surface and a server-rendered HTML UI at / — askama compile-time templates, HTMX for partial swaps and JSON forms (no SPA framework), Tailwind CSS 4, and lazy-loaded ECharts. Every UI mutation hits an existing /api/v1/* endpoint, so the API stays the single source of truth. Stack, routes, the add-a-page recipe, and UI tests are in docs/development.md.
Legal
A running instance serves its policies at /terms, /privacy, /cookies,
/impressum, /abuse-policy, /security-policy, and an RFC 9116
/.well-known/security.txt. The source documents are in
docs/legal/. GDPR self-service (data export, account
deletion, recovery) lives under /settings/account.
License
uptimepage is licensed under AGPL-3.0. See LICENSING.md for what this means in practice.
If you'd like to contribute, see CONTRIBUTING.md. For security disclosures, see SECURITY.md.
This 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
AlicenseAqualityAmaintenanceA remote Model Context Protocol server acting as middleware to the Sentry API, allowing AI assistants like Claude to access Sentry data and functionality through natural language interfaces.728811MIT
Grafana UI MCP Serverofficial
AlicenseCqualityDmaintenanceProvides AI assistants with comprehensive access to Grafana's React component library, including TypeScript source code, MDX documentation, Storybook examples, test files, and design system tokens for building Grafana-compatible interfaces.1109MIT- AlicenseAqualityCmaintenanceMCP server for CronAlert uptime monitoring — manage monitors, check results, and incidents from any MCP-compatible AI client.9118MIT

uptrack-mcpofficial
Alicense-qualityDmaintenanceMCP server for Uptrack uptime monitoring. Manage monitors and incidents from AI agents like Claude, ChatGPT, and Cursor.17MIT
Related MCP Connectors
Uptime, SSL, DNS and domain monitoring you can talk to from Claude or any MCP client.
MCP server for Argo RPG Platform — connects AI assistants to campaign data via OAuth2
MCP server for Pentest-Tools.com: run scans, manage findings and reports via your preffered LLM.
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/uptimepage/uptimepage'
If you have feedback or need assistance with the MCP directory API, please join our Discord server