GridGain · Capability

GridGain REST module — nodeManagement

GridGain REST module — nodeManagement. 3 operations. Lead operation: Get node information. Self-contained Naftiko capability covering one Gridgain business surface.

Run with Naftiko GridgainnodeManagement

What You Can Do

GET
Nodeinfo — Get node information
/v1/management/v1/node/info
GET
Nodestate — Get node state
/v1/management/v1/node/state
GET
Nodeversion — Get application version on node
/v1/management/v1/node/version

MCP Tools

get-node-information

Get node information

read-only idempotent
get-node-state

Get node state

read-only idempotent
get-application-version-node

Get application version on node

read-only idempotent

Capability Spec

gridgain-nodemanagement.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: GridGain REST module — nodeManagement
  description: 'GridGain REST module — nodeManagement. 3 operations. Lead operation: Get node information. Self-contained
    Naftiko capability covering one Gridgain business surface.'
  tags:
  - Gridgain
  - nodeManagement
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    GRIDGAIN_API_KEY: GRIDGAIN_API_KEY
capability:
  consumes:
  - type: http
    namespace: gridgain-nodemanagement
    baseUri: http://localhost:10300
    description: GridGain REST module — nodeManagement business capability. Self-contained, no shared references.
    resources:
    - name: management-v1-node-info
      path: /management/v1/node/info
      operations:
      - name: nodeinfo
        method: GET
        description: Get node information
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: management-v1-node-state
      path: /management/v1/node/state
      operations:
      - name: nodestate
        method: GET
        description: Get node state
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: management-v1-node-version
      path: /management/v1/node/version
      operations:
      - name: nodeversion
        method: GET
        description: Get application version on node
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.GRIDGAIN_API_KEY}}'
  exposes:
  - type: rest
    namespace: gridgain-nodemanagement-rest
    port: 8080
    description: REST adapter for GridGain REST module — nodeManagement. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/management/v1/node/info
      name: management-v1-node-info
      description: REST surface for management-v1-node-info.
      operations:
      - method: GET
        name: nodeinfo
        description: Get node information
        call: gridgain-nodemanagement.nodeinfo
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/management/v1/node/state
      name: management-v1-node-state
      description: REST surface for management-v1-node-state.
      operations:
      - method: GET
        name: nodestate
        description: Get node state
        call: gridgain-nodemanagement.nodestate
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/management/v1/node/version
      name: management-v1-node-version
      description: REST surface for management-v1-node-version.
      operations:
      - method: GET
        name: nodeversion
        description: Get application version on node
        call: gridgain-nodemanagement.nodeversion
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: gridgain-nodemanagement-mcp
    port: 9090
    transport: http
    description: MCP adapter for GridGain REST module — nodeManagement. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: get-node-information
      description: Get node information
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: gridgain-nodemanagement.nodeinfo
      outputParameters:
      - type: object
        mapping: $.
    - name: get-node-state
      description: Get node state
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: gridgain-nodemanagement.nodestate
      outputParameters:
      - type: object
        mapping: $.
    - name: get-application-version-node
      description: Get application version on node
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: gridgain-nodemanagement.nodeversion
      outputParameters:
      - type: object
        mapping: $.