Veritas InfoScale · Capability

Veritas InfoScale REST API — Clusters

Veritas InfoScale REST API — Clusters. 2 operations. Lead operation: Veritas InfoScale List Clusters. Self-contained Naftiko capability covering one Veritas Infoscale business surface.

Run with Naftiko Veritas InfoscaleClusters

What You Can Do

GET
Listclusters — Veritas InfoScale List Clusters
/v1/clusters
GET
Getcluster — Veritas InfoScale Get Cluster
/v1/clusters/{clusterid}

MCP Tools

veritas-infoscale-list-clusters

Veritas InfoScale List Clusters

read-only idempotent
veritas-infoscale-get-cluster

Veritas InfoScale Get Cluster

read-only idempotent

Capability Spec

rest-clusters.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Veritas InfoScale REST API — Clusters
  description: 'Veritas InfoScale REST API — Clusters. 2 operations. Lead operation: Veritas InfoScale List Clusters. Self-contained
    Naftiko capability covering one Veritas Infoscale business surface.'
  tags:
  - Veritas Infoscale
  - Clusters
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    VERITAS_INFOSCALE_API_KEY: VERITAS_INFOSCALE_API_KEY
capability:
  consumes:
  - type: http
    namespace: rest-clusters
    baseUri: https://{infoscale-server}:14149/api/v1
    description: Veritas InfoScale REST API — Clusters business capability. Self-contained, no shared references.
    resources:
    - name: clusters
      path: /clusters
      operations:
      - name: listclusters
        method: GET
        description: Veritas InfoScale List Clusters
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: clusters-clusterId
      path: /clusters/{clusterId}
      operations:
      - name: getcluster
        method: GET
        description: Veritas InfoScale Get Cluster
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.VERITAS_INFOSCALE_API_KEY}}'
  exposes:
  - type: rest
    namespace: rest-clusters-rest
    port: 8080
    description: REST adapter for Veritas InfoScale REST API — Clusters. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/clusters
      name: clusters
      description: REST surface for clusters.
      operations:
      - method: GET
        name: listclusters
        description: Veritas InfoScale List Clusters
        call: rest-clusters.listclusters
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/clusters/{clusterid}
      name: clusters-clusterid
      description: REST surface for clusters-clusterId.
      operations:
      - method: GET
        name: getcluster
        description: Veritas InfoScale Get Cluster
        call: rest-clusters.getcluster
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: rest-clusters-mcp
    port: 9090
    transport: http
    description: MCP adapter for Veritas InfoScale REST API — Clusters. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: veritas-infoscale-list-clusters
      description: Veritas InfoScale List Clusters
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-clusters.listclusters
      outputParameters:
      - type: object
        mapping: $.
    - name: veritas-infoscale-get-cluster
      description: Veritas InfoScale Get Cluster
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-clusters.getcluster
      outputParameters:
      - type: object
        mapping: $.