IBM WebSphere · Capability

WebSphere Application Server Admin REST API — Monitoring

WebSphere Application Server Admin REST API — Monitoring. 2 operations. Lead operation: Get Health Status. Self-contained Naftiko capability covering one Websphere business surface.

Run with Naftiko WebsphereMonitoring

What You Can Do

GET
Gethealthstatus — Get Health Status
/v1/monitoring/health
GET
Getperformancedata — Get Performance Monitoring Data
/v1/monitoring/performance

MCP Tools

get-health-status

Get Health Status

read-only idempotent
get-performance-monitoring-data

Get Performance Monitoring Data

read-only idempotent

Capability Spec

admin-rest-monitoring.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: WebSphere Application Server Admin REST API — Monitoring
  description: 'WebSphere Application Server Admin REST API — Monitoring. 2 operations. Lead operation: Get Health Status.
    Self-contained Naftiko capability covering one Websphere business surface.'
  tags:
  - Websphere
  - Monitoring
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    WEBSPHERE_API_KEY: WEBSPHERE_API_KEY
capability:
  consumes:
  - type: http
    namespace: admin-rest-monitoring
    baseUri: https://localhost:9443/ibm/api
    description: WebSphere Application Server Admin REST API — Monitoring business capability. Self-contained, no shared references.
    resources:
    - name: monitoring-health
      path: /monitoring/health
      operations:
      - name: gethealthstatus
        method: GET
        description: Get Health Status
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: monitoring-performance
      path: /monitoring/performance
      operations:
      - name: getperformancedata
        method: GET
        description: Get Performance Monitoring Data
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: module
          in: query
          type: string
          description: Performance module name
    authentication:
      type: apikey
      key: LtpaToken2
      value: '{{env.WEBSPHERE_API_KEY}}'
      placement: cookie
  exposes:
  - type: rest
    namespace: admin-rest-monitoring-rest
    port: 8080
    description: REST adapter for WebSphere Application Server Admin REST API — Monitoring. One Spectral-compliant resource
      per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/monitoring/health
      name: monitoring-health
      description: REST surface for monitoring-health.
      operations:
      - method: GET
        name: gethealthstatus
        description: Get Health Status
        call: admin-rest-monitoring.gethealthstatus
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/monitoring/performance
      name: monitoring-performance
      description: REST surface for monitoring-performance.
      operations:
      - method: GET
        name: getperformancedata
        description: Get Performance Monitoring Data
        call: admin-rest-monitoring.getperformancedata
        with:
          module: rest.module
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: admin-rest-monitoring-mcp
    port: 9090
    transport: http
    description: MCP adapter for WebSphere Application Server Admin REST API — Monitoring. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: get-health-status
      description: Get Health Status
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: admin-rest-monitoring.gethealthstatus
      outputParameters:
      - type: object
        mapping: $.
    - name: get-performance-monitoring-data
      description: Get Performance Monitoring Data
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: admin-rest-monitoring.getperformancedata
      with:
        module: tools.module
      outputParameters:
      - type: object
        mapping: $.