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

# Health check

> Returns the health status of the MCP server



## OpenAPI

````yaml get /health
openapi: 3.0.1
info:
  title: MCP Server API
  description: >
    The Alloy MCP Server API enables you to create and manage MCP (Model Context
    Protocol) servers that provide secure, controlled access to platform
    integrations for AI assistants.


    ## Key Features

    - Dynamic tool discovery and execution

    - Fine-grained access restrictions

    - JWT-based user isolation

    - Self-sufficient token URLs

    - Support for 21+ platform connectors
  version: '2.0'
  contact:
    name: Alloy Support
    email: support@runalloy.com
    url: https://runalloy.com
servers:
  - url: https://mcp.runalloy.com
    description: Production server
  - url: http://localhost:3000
    description: Local development server
security:
  - bearerAuth: []
tags:
  - name: Server Management
    description: Create and manage MCP servers
  - name: MCP Protocol
    description: Execute MCP protocol operations
  - name: Tools
    description: Discover and execute tools
  - name: Resources
    description: Access server resources
  - name: Prompts
    description: Access prompt templates
paths:
  /health:
    get:
      tags:
        - Health
      summary: Health check
      description: Returns the health status of the MCP server
      operationId: health-check
      responses:
        '200':
          description: Server is healthy
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - healthy
                  timestamp:
                    type: string
                    format: date-time
              example:
                status: healthy
                timestamp: '2024-01-01T00:00:00Z'
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT or API Key
      description: Use either an Alloy API key or JWT token

````