Skip to main content
Version: Next

Health Check

GET /health

Returns the current health status of the server.

Response

{
"status": "ok",
"server": "ClickUp MCP Server"
}
FieldTypeDescription
statusstringCurrent status of the server (always "ok" when healthy)
serverstringName of the server instance

Error Handling

If the server encounters an error, it will respond with an appropriate HTTP status code and a JSON response containing error details.

Common Status Codes

Status CodeDescription
200Success - The request was processed successfully
400Bad Request - The request was malformed or contained invalid parameters
404Not Found - The requested resource was not found
500Internal Server Error - An unexpected error occurred on the server

Error Response Format

{
"error": {
"message": "Description of the error",
"code": "ERROR_CODE"
}
}