Apache Ignite · Capability

Apache Ignite REST module — nodeConfiguration

Apache Ignite REST module — nodeConfiguration. 3 operations. Lead operation: Apache Ignite Get Node Configuration. Self-contained Naftiko capability covering one Apache Ignite business surface.

Run with Naftiko Apache IgnitenodeConfiguration

What You Can Do

GET
Getnodeconfiguration — Apache Ignite Get Node Configuration
/v1/management/v1/configuration/node
PATCH
Updatenodeconfiguration — Apache Ignite Update Node Configuration
/v1/management/v1/configuration/node
GET
Getnodeconfigurationbypath — Apache Ignite Get Configuration Represented by Path
/v1/management/v1/configuration/node/{path}

MCP Tools

apache-ignite-get-node-configuration

Apache Ignite Get Node Configuration

read-only idempotent
apache-ignite-update-node-configuration

Apache Ignite Update Node Configuration

idempotent
apache-ignite-get-configuration-represented

Apache Ignite Get Configuration Represented by Path

read-only idempotent

Capability Spec

rest-nodeconfiguration.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Apache Ignite REST module — nodeConfiguration
  description: 'Apache Ignite REST module — nodeConfiguration. 3 operations. Lead operation: Apache Ignite Get Node Configuration.
    Self-contained Naftiko capability covering one Apache Ignite business surface.'
  tags:
  - Apache Ignite
  - nodeConfiguration
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    APACHE_IGNITE_API_KEY: APACHE_IGNITE_API_KEY
capability:
  consumes:
  - type: http
    namespace: rest-nodeconfiguration
    baseUri: http://localhost:10300
    description: Apache Ignite REST module — nodeConfiguration business capability. Self-contained, no shared references.
    resources:
    - name: management-v1-configuration-node
      path: /management/v1/configuration/node
      operations:
      - name: getnodeconfiguration
        method: GET
        description: Apache Ignite Get Node Configuration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updatenodeconfiguration
        method: PATCH
        description: Apache Ignite Update Node Configuration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: management-v1-configuration-node-path
      path: /management/v1/configuration/node/{path}
      operations:
      - name: getnodeconfigurationbypath
        method: GET
        description: Apache Ignite Get Configuration Represented by Path
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: path
          in: path
          type: string
          description: 'Configuration tree address. For example: `element.subelement`.'
          required: true
    authentication:
      type: basic
      username: '{{env.APACHE_IGNITE_USER}}'
      password: '{{env.APACHE_IGNITE_PASS}}'
  exposes:
  - type: rest
    namespace: rest-nodeconfiguration-rest
    port: 8080
    description: REST adapter for Apache Ignite REST module — nodeConfiguration. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/management/v1/configuration/node
      name: management-v1-configuration-node
      description: REST surface for management-v1-configuration-node.
      operations:
      - method: GET
        name: getnodeconfiguration
        description: Apache Ignite Get Node Configuration
        call: rest-nodeconfiguration.getnodeconfiguration
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updatenodeconfiguration
        description: Apache Ignite Update Node Configuration
        call: rest-nodeconfiguration.updatenodeconfiguration
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/management/v1/configuration/node/{path}
      name: management-v1-configuration-node-path
      description: REST surface for management-v1-configuration-node-path.
      operations:
      - method: GET
        name: getnodeconfigurationbypath
        description: Apache Ignite Get Configuration Represented by Path
        call: rest-nodeconfiguration.getnodeconfigurationbypath
        with:
          path: rest.path
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: rest-nodeconfiguration-mcp
    port: 9090
    transport: http
    description: MCP adapter for Apache Ignite REST module — nodeConfiguration. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: apache-ignite-get-node-configuration
      description: Apache Ignite Get Node Configuration
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-nodeconfiguration.getnodeconfiguration
      outputParameters:
      - type: object
        mapping: $.
    - name: apache-ignite-update-node-configuration
      description: Apache Ignite Update Node Configuration
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: rest-nodeconfiguration.updatenodeconfiguration
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: apache-ignite-get-configuration-represented
      description: Apache Ignite Get Configuration Represented by Path
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-nodeconfiguration.getnodeconfigurationbypath
      with:
        path: tools.path
      outputParameters:
      - type: object
        mapping: $.