> ## Documentation Index
> Fetch the complete documentation index at: https://docs.arclio.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get service health status

> Returns the current operational status of the MCP Hub service



## OpenAPI

````yaml https://gist.githubusercontent.com/hillaryke/db4387d90d8a2367c8d3f478f2d48acc/raw/65b07bde29d5ff9b22522b3659db0b103c2d32e4/openapi.json get /health
openapi: 3.0.0
info:
  title: MCP Hub API
  version: 1.0.0
  description: >-
    A service that manages isolated Model Context Protocol (MCP) server
    instances
servers:
  - url: http://localhost:3000
    description: Development server
security: []
tags: []
paths:
  /health:
    get:
      tags:
        - System
      summary: Get service health status
      description: Returns the current operational status of the MCP Hub service
      responses:
        '200':
          description: Service status information
          content:
            application/json:
              schema:
                $ref: 64d2af31-4216-4649-9a9e-437dd716b1eb

````