openapi: 3.1.0
info:
  title: Mind Processing Monitor API
  version: 1.0.0
  description: API and discovery surface for mind processing event monitoring.
servers:
  - url: https://mind-processing-monitor.platphormnews.com
components:
  securitySchemes:
    PlatPhormApiKey:
      type: http
      scheme: bearer
      description: |
        Use Authorization: Bearer $PLATPHORM_API_KEY or X-PlatPhorm-API-Key for
        protected actions.
    PlatPhormHeader:
      type: apiKey
      in: header
      name: X-PlatPhorm-API-Key
paths:
  /api/health:
    get:
      summary: Public health status
      responses:
        '200':
          description: Health response
  /api/v1/health:
    get:
      summary: Versioned health status
      responses:
        '200':
          description: Health response
  /api/mcp:
    get:
      summary: Public MCP metadata
      responses:
        '200':
          description: MCP metadata
    post:
      summary: MCP JSON-RPC endpoint
      responses:
        '200':
          description: JSON-RPC response
