Skip to main content
GET
https://api.app.shinzo.ai
/
v1
/
mcp
/
servers
/
{id}
/
health
Health Check
curl --request GET \
  --url https://api.app.shinzo.ai/v1/mcp/servers/{id}/health \
  --header 'Authorization: Bearer <token>'

Authentication

Requires JWT token or Platform API key via Authorization: Bearer <token> header.
id
string
required
MCP server UUID

Description

Pings the MCP server and measures response latency. No request body is required.

Example Request

curl -X GET https://api.app.shinzo.ai/v1/mcp/servers/a1b2c3d4-e5f6-7890-abcd-ef1234567890/health \
  -H "Authorization: Bearer <token>"

Example Response

{
  "status": "healthy",
  "latency_ms": 142,
  "last_checked": "2026-01-15T14:30:00Z"
}

Unhealthy Response

{
  "status": "unhealthy",
  "latency_ms": null,
  "last_checked": "2026-01-15T14:30:00Z"
}

Status Codes

CodeDescription
200Health check completed (check status field for result)
401Unauthorized - invalid or missing authentication
404MCP server not found