Spring Boot 3 · Capability

Spring Boot 3 Actuator API — Health

Spring Boot 3 Actuator API — Health. 2 operations. Lead operation: Get Application Health. Self-contained Naftiko capability covering one Spring Boot 3 business surface.

Run with Naftiko Spring Boot 3Health

What You Can Do

GET
Gethealth — Get Application Health
/v1/health
GET
Gethealthcomponent — Get Component Health
/v1/health/{component}

MCP Tools

get-application-health

Get Application Health

read-only idempotent
get-component-health

Get Component Health

read-only idempotent

Capability Spec

actuator-health.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Spring Boot 3 Actuator API — Health
  description: 'Spring Boot 3 Actuator API — Health. 2 operations. Lead operation: Get Application Health. Self-contained
    Naftiko capability covering one Spring Boot 3 business surface.'
  tags:
  - Spring Boot 3
  - Health
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SPRING_BOOT_3_API_KEY: SPRING_BOOT_3_API_KEY
capability:
  consumes:
  - type: http
    namespace: actuator-health
    baseUri: http://localhost:8080/actuator
    description: Spring Boot 3 Actuator API — Health business capability. Self-contained, no shared references.
    resources:
    - name: health
      path: /health
      operations:
      - name: gethealth
        method: GET
        description: Get Application Health
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: health-component
      path: /health/{component}
      operations:
      - name: gethealthcomponent
        method: GET
        description: Get Component Health
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: component
          in: path
          type: string
          description: Health component name (e.g., db, diskSpace, redis)
          required: true
  exposes:
  - type: rest
    namespace: actuator-health-rest
    port: 8080
    description: REST adapter for Spring Boot 3 Actuator API — Health. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/health
      name: health
      description: REST surface for health.
      operations:
      - method: GET
        name: gethealth
        description: Get Application Health
        call: actuator-health.gethealth
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/health/{component}
      name: health-component
      description: REST surface for health-component.
      operations:
      - method: GET
        name: gethealthcomponent
        description: Get Component Health
        call: actuator-health.gethealthcomponent
        with:
          component: rest.component
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: actuator-health-mcp
    port: 9090
    transport: http
    description: MCP adapter for Spring Boot 3 Actuator API — Health. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: get-application-health
      description: Get Application Health
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: actuator-health.gethealth
      outputParameters:
      - type: object
        mapping: $.
    - name: get-component-health
      description: Get Component Health
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: actuator-health.gethealthcomponent
      with:
        component: tools.component
      outputParameters:
      - type: object
        mapping: $.