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

# Verify the SuperDocs MCP server is reachable and serving traffic.

> Returns 200 with {"status":"healthy"} when the API is up. Call this once after MCP install to confirm the connection works before invoking other tools. No authentication required.



## OpenAPI

````yaml /openapi.json get /health
openapi: 3.1.0
info:
  title: Universal Document AI API
  description: AI-powered document editing with multi-tenant organization support
  version: 2.0.0
servers: []
security: []
paths:
  /health:
    get:
      tags:
        - mcp
      summary: Verify the SuperDocs MCP server is reachable and serving traffic.
      description: >-
        Returns 200 with {"status":"healthy"} when the API is up. Call this once
        after MCP install to confirm the connection works before invoking other
        tools. No authentication required.
      operationId: health
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````