Quarkus · Capability

Quarkus Dev UI & Health/Metrics API — Health

Quarkus Dev UI & Health/Metrics API — Health. 4 operations. Lead operation: Quarkus Overall health check. Self-contained Naftiko capability covering one Quarkus business surface.

Run with Naftiko QuarkusHealth

What You Can Do

GET
Gethealth — Quarkus Overall health check
/v1/q/health
GET
Getliveness — Quarkus Liveness health check
/v1/q/health/live
GET
Getreadiness — Quarkus Readiness health check
/v1/q/health/ready
GET
Getstartup — Quarkus Startup health check
/v1/q/health/started

MCP Tools

quarkus-overall-health-check

Quarkus Overall health check

read-only idempotent
quarkus-liveness-health-check

Quarkus Liveness health check

read-only idempotent
quarkus-readiness-health-check

Quarkus Readiness health check

read-only idempotent
quarkus-startup-health-check

Quarkus Startup health check

read-only idempotent

Capability Spec

dev-ui-health.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Quarkus Dev UI & Health/Metrics API — Health
  description: 'Quarkus Dev UI & Health/Metrics API — Health. 4 operations. Lead operation: Quarkus Overall health check.
    Self-contained Naftiko capability covering one Quarkus business surface.'
  tags:
  - Quarkus
  - Health
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    QUARKUS_API_KEY: QUARKUS_API_KEY
capability:
  consumes:
  - type: http
    namespace: dev-ui-health
    baseUri: http://localhost:8080
    description: Quarkus Dev UI & Health/Metrics API — Health business capability. Self-contained, no shared references.
    resources:
    - name: q-health
      path: /q/health
      operations:
      - name: gethealth
        method: GET
        description: Quarkus Overall health check
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: q-health-live
      path: /q/health/live
      operations:
      - name: getliveness
        method: GET
        description: Quarkus Liveness health check
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: q-health-ready
      path: /q/health/ready
      operations:
      - name: getreadiness
        method: GET
        description: Quarkus Readiness health check
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: q-health-started
      path: /q/health/started
      operations:
      - name: getstartup
        method: GET
        description: Quarkus Startup health check
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
  exposes:
  - type: rest
    namespace: dev-ui-health-rest
    port: 8080
    description: REST adapter for Quarkus Dev UI & Health/Metrics API — Health. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/q/health
      name: q-health
      description: REST surface for q-health.
      operations:
      - method: GET
        name: gethealth
        description: Quarkus Overall health check
        call: dev-ui-health.gethealth
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/q/health/live
      name: q-health-live
      description: REST surface for q-health-live.
      operations:
      - method: GET
        name: getliveness
        description: Quarkus Liveness health check
        call: dev-ui-health.getliveness
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/q/health/ready
      name: q-health-ready
      description: REST surface for q-health-ready.
      operations:
      - method: GET
        name: getreadiness
        description: Quarkus Readiness health check
        call: dev-ui-health.getreadiness
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/q/health/started
      name: q-health-started
      description: REST surface for q-health-started.
      operations:
      - method: GET
        name: getstartup
        description: Quarkus Startup health check
        call: dev-ui-health.getstartup
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: dev-ui-health-mcp
    port: 9090
    transport: http
    description: MCP adapter for Quarkus Dev UI & Health/Metrics API — Health. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: quarkus-overall-health-check
      description: Quarkus Overall health check
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: dev-ui-health.gethealth
      outputParameters:
      - type: object
        mapping: $.
    - name: quarkus-liveness-health-check
      description: Quarkus Liveness health check
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: dev-ui-health.getliveness
      outputParameters:
      - type: object
        mapping: $.
    - name: quarkus-readiness-health-check
      description: Quarkus Readiness health check
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: dev-ui-health.getreadiness
      outputParameters:
      - type: object
        mapping: $.
    - name: quarkus-startup-health-check
      description: Quarkus Startup health check
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: dev-ui-health.getstartup
      outputParameters:
      - type: object
        mapping: $.