Spring Boot · Capability

Spring Boot Actuator API — JVM

Spring Boot Actuator API — JVM. 2 operations. Lead operation: Spring Boot Heap dump. Self-contained Naftiko capability covering one Spring Boot business surface.

Run with Naftiko Spring BootJVM

What You Can Do

GET
Getheapdump — Spring Boot Heap dump
/v1/heapdump
GET
Getthreaddump — Spring Boot Thread dump
/v1/threaddump

MCP Tools

spring-boot-heap-dump

Spring Boot Heap dump

read-only idempotent
spring-boot-thread-dump

Spring Boot Thread dump

read-only idempotent

Capability Spec

actuator-jvm.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Spring Boot Actuator API — JVM
  description: 'Spring Boot Actuator API — JVM. 2 operations. Lead operation: Spring Boot Heap dump. Self-contained Naftiko
    capability covering one Spring Boot business surface.'
  tags:
  - Spring Boot
  - JVM
  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-jvm
    baseUri: http://localhost:8080/actuator
    description: Spring Boot Actuator API — JVM business capability. Self-contained, no shared references.
    resources:
    - name: heapdump
      path: /heapdump
      operations:
      - name: getheapdump
        method: GET
        description: Spring Boot Heap dump
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: threaddump
      path: /threaddump
      operations:
      - name: getthreaddump
        method: GET
        description: Spring Boot Thread dump
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
  exposes:
  - type: rest
    namespace: actuator-jvm-rest
    port: 8080
    description: REST adapter for Spring Boot Actuator API — JVM. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/heapdump
      name: heapdump
      description: REST surface for heapdump.
      operations:
      - method: GET
        name: getheapdump
        description: Spring Boot Heap dump
        call: actuator-jvm.getheapdump
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/threaddump
      name: threaddump
      description: REST surface for threaddump.
      operations:
      - method: GET
        name: getthreaddump
        description: Spring Boot Thread dump
        call: actuator-jvm.getthreaddump
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: actuator-jvm-mcp
    port: 9090
    transport: http
    description: MCP adapter for Spring Boot Actuator API — JVM. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: spring-boot-heap-dump
      description: Spring Boot Heap dump
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: actuator-jvm.getheapdump
      outputParameters:
      - type: object
        mapping: $.
    - name: spring-boot-thread-dump
      description: Spring Boot Thread dump
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: actuator-jvm.getthreaddump
      outputParameters:
      - type: object
        mapping: $.