Apache Pinot · Capability

Apache Pinot REST API — Cluster

Apache Pinot REST API — Cluster. 2 operations. Lead operation: Apache Pinot Get Cluster Info. Self-contained Naftiko capability covering one Apache Pinot business surface.

Run with Naftiko Apache PinotCluster

What You Can Do

GET
Getclusterinfo — Apache Pinot Get Cluster Info
/v1/cluster/info
GET
Listinstances — Apache Pinot List Instances
/v1/instances

MCP Tools

apache-pinot-get-cluster-info

Apache Pinot Get Cluster Info

read-only idempotent
apache-pinot-list-instances

Apache Pinot List Instances

read-only idempotent

Capability Spec

rest-cluster.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Apache Pinot REST API — Cluster
  description: 'Apache Pinot REST API — Cluster. 2 operations. Lead operation: Apache Pinot Get Cluster Info. Self-contained
    Naftiko capability covering one Apache Pinot business surface.'
  tags:
  - Apache Pinot
  - Cluster
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    APACHE_PINOT_API_KEY: APACHE_PINOT_API_KEY
capability:
  consumes:
  - type: http
    namespace: rest-cluster
    baseUri: https://{host}
    description: Apache Pinot REST API — Cluster business capability. Self-contained, no shared references.
    resources:
    - name: cluster-info
      path: /cluster/info
      operations:
      - name: getclusterinfo
        method: GET
        description: Apache Pinot Get Cluster Info
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: instances
      path: /instances
      operations:
      - name: listinstances
        method: GET
        description: Apache Pinot List Instances
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
  exposes:
  - type: rest
    namespace: rest-cluster-rest
    port: 8080
    description: REST adapter for Apache Pinot REST API — Cluster. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/cluster/info
      name: cluster-info
      description: REST surface for cluster-info.
      operations:
      - method: GET
        name: getclusterinfo
        description: Apache Pinot Get Cluster Info
        call: rest-cluster.getclusterinfo
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/instances
      name: instances
      description: REST surface for instances.
      operations:
      - method: GET
        name: listinstances
        description: Apache Pinot List Instances
        call: rest-cluster.listinstances
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: rest-cluster-mcp
    port: 9090
    transport: http
    description: MCP adapter for Apache Pinot REST API — Cluster. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: apache-pinot-get-cluster-info
      description: Apache Pinot Get Cluster Info
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-cluster.getclusterinfo
      outputParameters:
      - type: object
        mapping: $.
    - name: apache-pinot-list-instances
      description: Apache Pinot List Instances
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-cluster.listinstances
      outputParameters:
      - type: object
        mapping: $.