Spring Boot · Capability

Spring Boot Actuator API — Application

Spring Boot Actuator API — Application. 3 operations. Lead operation: Spring Boot List all Spring beans. Self-contained Naftiko capability covering one Spring Boot business surface.

Run with Naftiko Spring BootApplication

What You Can Do

GET
Getbeans — Spring Boot List all Spring beans
/v1/beans
GET
Getmappings — Spring Boot Request mappings
/v1/mappings
GET
Getscheduledtasks — Spring Boot Scheduled tasks
/v1/scheduledtasks

MCP Tools

spring-boot-list-all-spring

Spring Boot List all Spring beans

read-only idempotent
spring-boot-request-mappings

Spring Boot Request mappings

read-only idempotent
spring-boot-scheduled-tasks

Spring Boot Scheduled tasks

read-only idempotent

Capability Spec

actuator-application.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Spring Boot Actuator API — Application
  description: 'Spring Boot Actuator API — Application. 3 operations. Lead operation: Spring Boot List all Spring beans. Self-contained
    Naftiko capability covering one Spring Boot business surface.'
  tags:
  - Spring Boot
  - Application
  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-application
    baseUri: http://localhost:8080/actuator
    description: Spring Boot Actuator API — Application business capability. Self-contained, no shared references.
    resources:
    - name: beans
      path: /beans
      operations:
      - name: getbeans
        method: GET
        description: Spring Boot List all Spring beans
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: mappings
      path: /mappings
      operations:
      - name: getmappings
        method: GET
        description: Spring Boot Request mappings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: scheduledtasks
      path: /scheduledtasks
      operations:
      - name: getscheduledtasks
        method: GET
        description: Spring Boot Scheduled tasks
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
  exposes:
  - type: rest
    namespace: actuator-application-rest
    port: 8080
    description: REST adapter for Spring Boot Actuator API — Application. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/beans
      name: beans
      description: REST surface for beans.
      operations:
      - method: GET
        name: getbeans
        description: Spring Boot List all Spring beans
        call: actuator-application.getbeans
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/mappings
      name: mappings
      description: REST surface for mappings.
      operations:
      - method: GET
        name: getmappings
        description: Spring Boot Request mappings
        call: actuator-application.getmappings
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/scheduledtasks
      name: scheduledtasks
      description: REST surface for scheduledtasks.
      operations:
      - method: GET
        name: getscheduledtasks
        description: Spring Boot Scheduled tasks
        call: actuator-application.getscheduledtasks
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: actuator-application-mcp
    port: 9090
    transport: http
    description: MCP adapter for Spring Boot Actuator API — Application. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: spring-boot-list-all-spring
      description: Spring Boot List all Spring beans
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: actuator-application.getbeans
      outputParameters:
      - type: object
        mapping: $.
    - name: spring-boot-request-mappings
      description: Spring Boot Request mappings
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: actuator-application.getmappings
      outputParameters:
      - type: object
        mapping: $.
    - name: spring-boot-scheduled-tasks
      description: Spring Boot Scheduled tasks
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: actuator-application.getscheduledtasks
      outputParameters:
      - type: object
        mapping: $.