Getting Started
Introduction

Introduction to Statly

Statly is an AI-native observability platform designed for modern teams who need reliable status pages, uptime monitoring, error tracking, and AI-powered operations—all in one place.

Why Statly?

AI-Native Platform

Statly is built from the ground up for the AI era:

  • Model Context Protocol (MCP): Connect Claude, Cursor, and other AI assistants directly to your infrastructure
  • Natural Language Operations: Manage incidents, query status, and automate workflows through conversation
  • Documentation-First: AI agents have full access to SDK and API docs for coding assistance

Connect your AI at https://mcp.statly.live/mcp — no installation required. Learn more →

All-in-One Observability

Instead of cobbling together multiple services, Statly provides:

  • Status Pages: Professional public-facing pages to communicate service health
  • Uptime Monitoring: Multi-region checks from AWS Lambda probes worldwide
  • Error Tracking: SDKs for JavaScript, Python, and Go to capture exceptions
  • Incident Management: Create, update, and resolve incidents with subscriber notifications
  • AI Integration: Connect AI assistants via MCP for natural language operations

Built on Cloudflare

Statly runs entirely on Cloudflare's edge infrastructure:

  • Cloudflare Workers for API endpoints
  • Cloudflare D1 (SQLite) for data storage
  • Cloudflare Pages for hosting
  • Zero cold starts and global distribution

Multi-Tenant by Design

Organizations can have:

  • Custom subdomains (yourcompany.statly.live)
  • Custom domains (status.yourcompany.com)
  • Team members with role-based access
  • Multiple status page templates

Core Features

Monitors

HTTP, TCP, DNS, and WebSocket checks running every 1-5 minutes from multiple regions:

  • US East (Virginia)
  • US West (Oregon)
  • Europe (Ireland)
  • Asia Pacific (Tokyo, Singapore)

Status Pages

Three beautiful templates out of the box:

  • Minimal: Clean, modern dark design
  • Modern: Professional with detailed metrics
  • Enterprise: Developer-focused with detailed uptime data

SDKs

Error tracking for your applications:

import { init, captureException } from '@statly/observe';
 
init({ dsn: 'https://[email protected]/your-org' });
 
try {
  riskyOperation();
} catch (error) {
  captureException(error);
}

API

Full REST API for automation:

  • Create and manage monitors programmatically
  • Trigger incidents from CI/CD pipelines
  • Query uptime metrics for dashboards

Next Steps