Minimal liveness ping
GET
/health/ping
const url = 'https://example.com/api/health/ping';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/health/pingSmaller payload than GET /health; for synthetic monitors and cheap polls. No dependency checks. Includes version and protocol_version for MCP client pre-flight checks.
Responses
Section titled “ Responses ”OK
Media type application/json
object
ok
required
boolean
pong
required
boolean
version
required
Application version string
string
protocol_version
required
MCP protocol version supported by this server
string
uptime_s
required
Server uptime in seconds
number