Apache BookKeeper · Capability

Apache BookKeeper Admin API — Configuration

Apache BookKeeper Admin API — Configuration. 2 operations. Lead operation: Apache BookKeeper Get Server Configuration. Self-contained Naftiko capability covering one Apache Bookkeeper business surface.

Run with Naftiko Apache BookkeeperConfiguration

What You Can Do

GET
Getserverconfig — Apache BookKeeper Get Server Configuration
/v1/api/v1/config/server-config
PUT
Updateserverconfig — Apache BookKeeper Update Server Configuration
/v1/api/v1/config/server-config

MCP Tools

apache-bookkeeper-get-server-configuration

Apache BookKeeper Get Server Configuration

read-only idempotent
apache-bookkeeper-update-server-configuration

Apache BookKeeper Update Server Configuration

idempotent

Capability Spec

admin-configuration.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Apache BookKeeper Admin API — Configuration
  description: 'Apache BookKeeper Admin API — Configuration. 2 operations. Lead operation: Apache BookKeeper Get Server Configuration.
    Self-contained Naftiko capability covering one Apache Bookkeeper business surface.'
  tags:
  - Apache Bookkeeper
  - Configuration
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    APACHE_BOOKKEEPER_API_KEY: APACHE_BOOKKEEPER_API_KEY
capability:
  consumes:
  - type: http
    namespace: admin-configuration
    baseUri: http://localhost:8080
    description: Apache BookKeeper Admin API — Configuration business capability. Self-contained, no shared references.
    resources:
    - name: api-v1-config-server_config
      path: /api/v1/config/server_config
      operations:
      - name: getserverconfig
        method: GET
        description: Apache BookKeeper Get Server Configuration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updateserverconfig
        method: PUT
        description: Apache BookKeeper Update Server Configuration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: configName
          in: query
          type: string
          description: Name of the configuration parameter to update.
          required: true
        - name: configValue
          in: query
          type: string
          description: New value for the configuration parameter.
          required: true
  exposes:
  - type: rest
    namespace: admin-configuration-rest
    port: 8080
    description: REST adapter for Apache BookKeeper Admin API — Configuration. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/api/v1/config/server-config
      name: api-v1-config-server-config
      description: REST surface for api-v1-config-server_config.
      operations:
      - method: GET
        name: getserverconfig
        description: Apache BookKeeper Get Server Configuration
        call: admin-configuration.getserverconfig
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateserverconfig
        description: Apache BookKeeper Update Server Configuration
        call: admin-configuration.updateserverconfig
        with:
          configName: rest.configName
          configValue: rest.configValue
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: admin-configuration-mcp
    port: 9090
    transport: http
    description: MCP adapter for Apache BookKeeper Admin API — Configuration. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: apache-bookkeeper-get-server-configuration
      description: Apache BookKeeper Get Server Configuration
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: admin-configuration.getserverconfig
      outputParameters:
      - type: object
        mapping: $.
    - name: apache-bookkeeper-update-server-configuration
      description: Apache BookKeeper Update Server Configuration
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: admin-configuration.updateserverconfig
      with:
        configName: tools.configName
        configValue: tools.configValue
      outputParameters:
      - type: object
        mapping: $.