Spring Boot · Capability

Spring Boot Actuator API — Health

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

Run with Naftiko Spring BootHealth

What You Can Do

GET
Gethealth — Spring Boot Application health information
/v1/health
GET
Gethealthcomponent — Spring Boot Health for a specific component
/v1/health/{component}

MCP Tools

spring-boot-application-health-information

Spring Boot Application health information

read-only idempotent
spring-boot-health-specific-component

Spring Boot Health for a specific component

read-only idempotent

Capability Spec

actuator-health.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Spring Boot Actuator API — Health
  description: 'Spring Boot Actuator API — Health. 2 operations. Lead operation: Spring Boot Application health information.
    Self-contained Naftiko capability covering one Spring Boot business surface.'
  tags:
  - Spring Boot
  - Health
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SPRING_BOOT_API_KEY: SPRING_BOOT_API_KEY
capability:
  consumes:
  - type: http
    namespace: actuator-health
    baseUri: http://localhost:8080/actuator
    description: Spring Boot Actuator API — Health business capability. Self-contained, no shared references.
    resources:
    - name: health
      path: /health
      operations:
      - name: gethealth
        method: GET
        description: Spring Boot Application health information
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: health-component
      path: /health/{component}
      operations:
      - name: gethealthcomponent
        method: GET
        description: Spring Boot Health for a specific component
        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 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: Spring Boot Application health information
        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: Spring Boot Health for a specific component
        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 Actuator API — Health. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: spring-boot-application-health-information
      description: Spring Boot Application health information
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: actuator-health.gethealth
      outputParameters:
      - type: object
        mapping: $.
    - name: spring-boot-health-specific-component
      description: Spring Boot Health for a specific component
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: actuator-health.gethealthcomponent
      with:
        component: tools.component
      outputParameters:
      - type: object
        mapping: $.