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

# Liveness probe

> Returns `{"status": "ok"}` when the MCP Server is running and can reach both Memory API and Knowledge API.



## OpenAPI

````yaml /api-reference/mcp-server.json get /healthz
openapi: 3.1.0
info:
  title: Strattum MCP Server
  version: 1.0.0
  description: >-
    MCP Server that exposes Memory and Knowledge as Model Context Protocol
    tools. The SSE endpoint is used for remote MCP transport (e.g. Microsoft
    Copilot). Tools are described via the MCP protocol, not OpenAPI.
  contact:
    name: Strattum Engineering
    email: eng@strattum.ai
servers:
  - url: http://localhost:8005
    description: Local development
  - url: http://strattum-mcp-server:8005
    description: Docker Compose (internal)
security: []
tags:
  - name: mcp
    description: MCP transport endpoint (SSE). Tools are defined by the MCP protocol.
  - name: health
    description: Liveness probe for the MCP Server.
paths:
  /healthz:
    get:
      tags:
        - health
      summary: Liveness probe
      description: >-
        Returns `{"status": "ok"}` when the MCP Server is running and can reach
        both Memory API and Knowledge API.
      operationId: healthz_mcp
      responses:
        '200':
          description: Service is alive and upstream APIs are reachable.
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    example: ok
                  memory_api:
                    type: string
                    example: ok
                  knowledge_api:
                    type: string
                    example: ok
        '503':
          description: One or more upstream APIs are unreachable.

````