Akka · Capability

Akka Management API — Health

Akka Management API — Health. 2 operations. Lead operation: Akka Liveness Check. Self-contained Naftiko capability covering one Akka business surface.

Run with Naftiko AkkaHealth

What You Can Do

GET
Getalive — Akka Liveness Check
/v1/alive
GET
Getready — Akka Readiness Check
/v1/ready

MCP Tools

akka-liveness-check

Akka Liveness Check

read-only idempotent
akka-readiness-check

Akka Readiness Check

read-only idempotent

Capability Spec

management-health.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Akka Management API — Health
  description: 'Akka Management API — Health. 2 operations. Lead operation: Akka Liveness Check. Self-contained Naftiko capability
    covering one Akka business surface.'
  tags:
  - Akka
  - Health
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    AKKA_API_KEY: AKKA_API_KEY
capability:
  consumes:
  - type: http
    namespace: management-health
    baseUri: http://localhost:8558
    description: Akka Management API — Health business capability. Self-contained, no shared references.
    resources:
    - name: alive
      path: /alive
      operations:
      - name: getalive
        method: GET
        description: Akka Liveness Check
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: ready
      path: /ready
      operations:
      - name: getready
        method: GET
        description: Akka Readiness Check
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
  exposes:
  - type: rest
    namespace: management-health-rest
    port: 8080
    description: REST adapter for Akka Management API — Health. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/alive
      name: alive
      description: REST surface for alive.
      operations:
      - method: GET
        name: getalive
        description: Akka Liveness Check
        call: management-health.getalive
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/ready
      name: ready
      description: REST surface for ready.
      operations:
      - method: GET
        name: getready
        description: Akka Readiness Check
        call: management-health.getready
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: management-health-mcp
    port: 9090
    transport: http
    description: MCP adapter for Akka Management API — Health. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: akka-liveness-check
      description: Akka Liveness Check
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: management-health.getalive
      outputParameters:
      - type: object
        mapping: $.
    - name: akka-readiness-check
      description: Akka Readiness Check
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: management-health.getready
      outputParameters:
      - type: object
        mapping: $.