Jetic · Capability

Jetic Platform API — Clusters

Jetic Platform API — Clusters. 5 operations. Lead operation: Jetic List clusters. Self-contained Naftiko capability covering one Jetic business surface.

Run with Naftiko JeticClusters

What You Can Do

GET
Listclusters — Jetic List clusters
/v1/clusters
POST
Registercluster — Jetic Register a cluster
/v1/clusters
GET
Getcluster — Jetic Get cluster details
/v1/clusters/{clusterid}
DELETE
Removecluster — Jetic Remove a cluster
/v1/clusters/{clusterid}
GET
Getclusterstatus — Jetic Get cluster status
/v1/clusters/{clusterid}/status

MCP Tools

jetic-list-clusters

Jetic List clusters

read-only idempotent
jetic-register-cluster

Jetic Register a cluster

jetic-get-cluster-details

Jetic Get cluster details

read-only idempotent
jetic-remove-cluster

Jetic Remove a cluster

idempotent
jetic-get-cluster-status

Jetic Get cluster status

read-only idempotent

Capability Spec

platform-clusters.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Jetic Platform API — Clusters
  description: 'Jetic Platform API — Clusters. 5 operations. Lead operation: Jetic List clusters. Self-contained Naftiko capability
    covering one Jetic business surface.'
  tags:
  - Jetic
  - Clusters
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    JETIC_API_KEY: JETIC_API_KEY
capability:
  consumes:
  - type: http
    namespace: platform-clusters
    baseUri: https://app.us1.jetic.io/api/v1
    description: Jetic Platform API — Clusters business capability. Self-contained, no shared references.
    resources:
    - name: clusters
      path: /clusters
      operations:
      - name: listclusters
        method: GET
        description: Jetic List clusters
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: registercluster
        method: POST
        description: Jetic Register a cluster
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: clusters-clusterId
      path: /clusters/{clusterId}
      operations:
      - name: getcluster
        method: GET
        description: Jetic Get cluster details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: removecluster
        method: DELETE
        description: Jetic Remove a cluster
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: clusters-clusterId-status
      path: /clusters/{clusterId}/status
      operations:
      - name: getclusterstatus
        method: GET
        description: Jetic Get cluster status
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.JETIC_API_KEY}}'
  exposes:
  - type: rest
    namespace: platform-clusters-rest
    port: 8080
    description: REST adapter for Jetic Platform 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: Jetic List clusters
        call: platform-clusters.listclusters
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: registercluster
        description: Jetic Register a cluster
        call: platform-clusters.registercluster
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/clusters/{clusterid}
      name: clusters-clusterid
      description: REST surface for clusters-clusterId.
      operations:
      - method: GET
        name: getcluster
        description: Jetic Get cluster details
        call: platform-clusters.getcluster
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: removecluster
        description: Jetic Remove a cluster
        call: platform-clusters.removecluster
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/clusters/{clusterid}/status
      name: clusters-clusterid-status
      description: REST surface for clusters-clusterId-status.
      operations:
      - method: GET
        name: getclusterstatus
        description: Jetic Get cluster status
        call: platform-clusters.getclusterstatus
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: platform-clusters-mcp
    port: 9090
    transport: http
    description: MCP adapter for Jetic Platform API — Clusters. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: jetic-list-clusters
      description: Jetic List clusters
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: platform-clusters.listclusters
      outputParameters:
      - type: object
        mapping: $.
    - name: jetic-register-cluster
      description: Jetic Register a cluster
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: platform-clusters.registercluster
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: jetic-get-cluster-details
      description: Jetic Get cluster details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: platform-clusters.getcluster
      outputParameters:
      - type: object
        mapping: $.
    - name: jetic-remove-cluster
      description: Jetic Remove a cluster
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: platform-clusters.removecluster
      outputParameters:
      - type: object
        mapping: $.
    - name: jetic-get-cluster-status
      description: Jetic Get cluster status
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: platform-clusters.getclusterstatus
      outputParameters:
      - type: object
        mapping: $.