Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Bridger Gateway liveness health-check endpoint.
GET /health
{ "status": "healthy", "service": "mcp-gateway", "timestamp": "2026-02-09T05:00:00.000Z" }
status
"healthy"
service
mcp-gateway
timestamp
status: healthy
GET /health/ready
200 healthy
503 degraded
GET /health/detailed
/health/ready
{ "status": "healthy", "service": "mcp-gateway", "timestamp": "2026-02-09T05:00:00.000Z", "checks": { "database": { "status": "healthy", "latencyMs": 3 }, "redis": { "status": "healthy", "latencyMs": 1 } } }
curl https://mcp.datari.kr/health
livenessProbe: httpGet: path: /health port: 8080 initialDelaySeconds: 5 periodSeconds: 10 readinessProbe: httpGet: path: /health/ready port: 8080 initialDelaySeconds: 5 periodSeconds: 5
Was this page helpful?