Skip to main content

Health Check

The health endpoint provides a simple way to verify the service is running.

Endpoint

GET /health
No authentication required.

Response

{
  "status": "ok",
  "service": "claude-email-connector",
  "transport": "streamable-http",
  "version": "1.0.0"
}

HEAD Request

HEAD /health
Returns 200 OK with no body. Useful for uptime monitors that only check status codes.

Usage

Uptime monitoring Point your monitoring service (UptimeRobot, Pingdom, etc.) at:
https://email-connector.fly.dev/health
Quick check from terminal
curl https://email-connector.fly.dev/health
Docker health check
HEALTHCHECK --interval=30s --timeout=5s \
  CMD curl -f http://localhost:3000/health || exit 1

Live Status

Check Status

email-connector.fly.dev/health