Apache Geode · Capability

Apache Geode REST API — Administration

Apache Geode REST API — Administration. 2 operations. Lead operation: Apache Geode Ping Cluster. Self-contained Naftiko capability covering one Apache Geode business surface.

Run with Naftiko Apache GeodeAdministration

What You Can Do

GET
Pingcluster — Apache Geode Ping Cluster
/v1/geode/v1/ping
GET
Listservers — Apache Geode List Cluster Servers
/v1/geode/v1/servers

MCP Tools

apache-geode-ping-cluster

Apache Geode Ping Cluster

read-only idempotent
apache-geode-list-cluster-servers

Apache Geode List Cluster Servers

read-only idempotent

Capability Spec

rest-administration.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Apache Geode REST API — Administration
  description: 'Apache Geode REST API — Administration. 2 operations. Lead operation: Apache Geode Ping Cluster. Self-contained
    Naftiko capability covering one Apache Geode business surface.'
  tags:
  - Apache Geode
  - Administration
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    APACHE_GEODE_API_KEY: APACHE_GEODE_API_KEY
capability:
  consumes:
  - type: http
    namespace: rest-administration
    baseUri: http://localhost:8080
    description: Apache Geode REST API — Administration business capability. Self-contained, no shared references.
    resources:
    - name: geode-v1-ping
      path: /geode/v1/ping
      operations:
      - name: pingcluster
        method: GET
        description: Apache Geode Ping Cluster
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: geode-v1-servers
      path: /geode/v1/servers
      operations:
      - name: listservers
        method: GET
        description: Apache Geode List Cluster Servers
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
  exposes:
  - type: rest
    namespace: rest-administration-rest
    port: 8080
    description: REST adapter for Apache Geode REST API — Administration. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/geode/v1/ping
      name: geode-v1-ping
      description: REST surface for geode-v1-ping.
      operations:
      - method: GET
        name: pingcluster
        description: Apache Geode Ping Cluster
        call: rest-administration.pingcluster
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/geode/v1/servers
      name: geode-v1-servers
      description: REST surface for geode-v1-servers.
      operations:
      - method: GET
        name: listservers
        description: Apache Geode List Cluster Servers
        call: rest-administration.listservers
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: rest-administration-mcp
    port: 9090
    transport: http
    description: MCP adapter for Apache Geode REST API — Administration. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: apache-geode-ping-cluster
      description: Apache Geode Ping Cluster
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-administration.pingcluster
      outputParameters:
      - type: object
        mapping: $.
    - name: apache-geode-list-cluster-servers
      description: Apache Geode List Cluster Servers
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-administration.listservers
      outputParameters:
      - type: object
        mapping: $.