IBM WebSphere · Capability

WebSphere Liberty Admin REST API — Features

WebSphere Liberty Admin REST API — Features. 2 operations. Lead operation: List Installed Features. Self-contained Naftiko capability covering one Websphere business surface.

Run with Naftiko WebsphereFeatures

What You Can Do

GET
Listfeatures — List Installed Features
/v1/features
GET
Getfeature — Get Feature Details
/v1/features/{featurename}

MCP Tools

list-installed-features

List Installed Features

read-only idempotent
get-feature-details

Get Feature Details

read-only idempotent

Capability Spec

liberty-admin-rest-features.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: WebSphere Liberty Admin REST API — Features
  description: 'WebSphere Liberty Admin REST API — Features. 2 operations. Lead operation: List Installed Features. Self-contained
    Naftiko capability covering one Websphere business surface.'
  tags:
  - Websphere
  - Features
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    WEBSPHERE_API_KEY: WEBSPHERE_API_KEY
capability:
  consumes:
  - type: http
    namespace: liberty-admin-rest-features
    baseUri: https://localhost:9443/ibm/api
    description: WebSphere Liberty Admin REST API — Features business capability. Self-contained, no shared references.
    resources:
    - name: features
      path: /features
      operations:
      - name: listfeatures
        method: GET
        description: List Installed Features
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: features-featureName
      path: /features/{featureName}
      operations:
      - name: getfeature
        method: GET
        description: Get Feature Details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: featureName
          in: path
          type: string
          description: Feature symbolic name
          required: true
    authentication:
      type: apikey
      key: LtpaToken2
      value: '{{env.WEBSPHERE_API_KEY}}'
      placement: cookie
  exposes:
  - type: rest
    namespace: liberty-admin-rest-features-rest
    port: 8080
    description: REST adapter for WebSphere Liberty Admin REST API — Features. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/features
      name: features
      description: REST surface for features.
      operations:
      - method: GET
        name: listfeatures
        description: List Installed Features
        call: liberty-admin-rest-features.listfeatures
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/features/{featurename}
      name: features-featurename
      description: REST surface for features-featureName.
      operations:
      - method: GET
        name: getfeature
        description: Get Feature Details
        call: liberty-admin-rest-features.getfeature
        with:
          featureName: rest.featureName
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: liberty-admin-rest-features-mcp
    port: 9090
    transport: http
    description: MCP adapter for WebSphere Liberty Admin REST API — Features. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: list-installed-features
      description: List Installed Features
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: liberty-admin-rest-features.listfeatures
      outputParameters:
      - type: object
        mapping: $.
    - name: get-feature-details
      description: Get Feature Details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: liberty-admin-rest-features.getfeature
      with:
        featureName: tools.featureName
      outputParameters:
      - type: object
        mapping: $.