LeanIX · Capability

Integration API — configurations

Integration API — configurations. 3 operations. Lead operation: configurations. Self-contained Naftiko capability covering one Leanix business surface.

Run with Naftiko Leanixconfigurations

What You Can Do

GET
Getprocessorconfigurations — Returns a list of available processor configurations
/v1/configurations
PUT
Upsertprocessorconfiguration — Inserts a new processor configuration or updates an existing one
/v1/configurations
DELETE
Deleteprocessorconfiguration — Delete a single processor configuration
/v1/configurations

MCP Tools

returns-list-available-processor-configurations

Returns a list of available processor configurations

read-only idempotent
inserts-new-processor-configuration-updates

Inserts a new processor configuration or updates an existing one

idempotent
delete-single-processor-configuration

Delete a single processor configuration

idempotent

Capability Spec

leanix-configurations.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Integration API — configurations
  description: 'Integration API — configurations. 3 operations. Lead operation: configurations. Self-contained Naftiko capability
    covering one Leanix business surface.'
  tags:
  - Leanix
  - configurations
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    LEANIX_API_KEY: LEANIX_API_KEY
capability:
  consumes:
  - type: http
    namespace: leanix-configurations
    baseUri: ''
    description: Integration API — configurations business capability. Self-contained, no shared references.
    resources:
    - name: configurations
      path: /configurations
      operations:
      - name: getprocessorconfigurations
        method: GET
        description: Returns a list of available processor configurations
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: upsertprocessorconfiguration
        method: PUT
        description: Inserts a new processor configuration or updates an existing one
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: string
      - name: deleteprocessorconfiguration
        method: DELETE
        description: Delete a single processor configuration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
  exposes:
  - type: rest
    namespace: leanix-configurations-rest
    port: 8080
    description: REST adapter for Integration API — configurations. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/configurations
      name: configurations
      description: REST surface for configurations.
      operations:
      - method: GET
        name: getprocessorconfigurations
        description: Returns a list of available processor configurations
        call: leanix-configurations.getprocessorconfigurations
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: upsertprocessorconfiguration
        description: Inserts a new processor configuration or updates an existing one
        call: leanix-configurations.upsertprocessorconfiguration
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteprocessorconfiguration
        description: Delete a single processor configuration
        call: leanix-configurations.deleteprocessorconfiguration
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: leanix-configurations-mcp
    port: 9090
    transport: http
    description: MCP adapter for Integration API — configurations. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: returns-list-available-processor-configurations
      description: Returns a list of available processor configurations
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: leanix-configurations.getprocessorconfigurations
      outputParameters:
      - type: object
        mapping: $.
    - name: inserts-new-processor-configuration-updates
      description: Inserts a new processor configuration or updates an existing one
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: leanix-configurations.upsertprocessorconfiguration
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-single-processor-configuration
      description: Delete a single processor configuration
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: leanix-configurations.deleteprocessorconfiguration
      outputParameters:
      - type: object
        mapping: $.