Oracle Container Engine for Kubernetes (OKE) API — Node Pools

Oracle Container Engine for Kubernetes (OKE) API — Node Pools. 4 operations. Lead operation: List node pools. Self-contained Naftiko capability covering one Oracle Container Engine business surface.

Run with Naftiko Oracle Container EngineNode Pools

What You Can Do

GET
Listnodepools — List node pools
/v1/nodepools
POST
Createnodepool — Create a node pool
/v1/nodepools
GET
Getnodepool — Get a node pool
/v1/nodepools/{nodepoolid}
DELETE
Deletenodepool — Delete a node pool
/v1/nodepools/{nodepoolid}

MCP Tools

list-node-pools

List node pools

read-only idempotent
create-node-pool

Create a node pool

get-node-pool

Get a node pool

read-only idempotent
delete-node-pool

Delete a node pool

idempotent

Capability Spec

oracle-container-engine-node-pools.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Oracle Container Engine for Kubernetes (OKE) API — Node Pools
  description: 'Oracle Container Engine for Kubernetes (OKE) API — Node Pools. 4 operations. Lead operation: List node pools.
    Self-contained Naftiko capability covering one Oracle Container Engine business surface.'
  tags:
  - Oracle Container Engine
  - Node Pools
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ORACLE_CONTAINER_ENGINE_API_KEY: ORACLE_CONTAINER_ENGINE_API_KEY
capability:
  consumes:
  - type: http
    namespace: oracle-container-engine-node-pools
    baseUri: https://containerengine.{region}.oci.oraclecloud.com/20180222
    description: Oracle Container Engine for Kubernetes (OKE) API — Node Pools business capability. Self-contained, no shared
      references.
    resources:
    - name: nodePools
      path: /nodePools
      operations:
      - name: listnodepools
        method: GET
        description: List node pools
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: clusterId
          in: query
          type: string
      - name: createnodepool
        method: POST
        description: Create a node pool
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: nodePools-nodePoolId
      path: /nodePools/{nodePoolId}
      operations:
      - name: getnodepool
        method: GET
        description: Get a node pool
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: nodePoolId
          in: path
          type: string
          required: true
      - name: deletenodepool
        method: DELETE
        description: Delete a node pool
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: nodePoolId
          in: path
          type: string
          required: true
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.ORACLE_CONTAINER_ENGINE_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: oracle-container-engine-node-pools-rest
    port: 8080
    description: REST adapter for Oracle Container Engine for Kubernetes (OKE) API — Node Pools. One Spectral-compliant resource
      per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/nodepools
      name: nodepools
      description: REST surface for nodePools.
      operations:
      - method: GET
        name: listnodepools
        description: List node pools
        call: oracle-container-engine-node-pools.listnodepools
        with:
          clusterId: rest.clusterId
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createnodepool
        description: Create a node pool
        call: oracle-container-engine-node-pools.createnodepool
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/nodepools/{nodepoolid}
      name: nodepools-nodepoolid
      description: REST surface for nodePools-nodePoolId.
      operations:
      - method: GET
        name: getnodepool
        description: Get a node pool
        call: oracle-container-engine-node-pools.getnodepool
        with:
          nodePoolId: rest.nodePoolId
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletenodepool
        description: Delete a node pool
        call: oracle-container-engine-node-pools.deletenodepool
        with:
          nodePoolId: rest.nodePoolId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: oracle-container-engine-node-pools-mcp
    port: 9090
    transport: http
    description: MCP adapter for Oracle Container Engine for Kubernetes (OKE) API — Node Pools. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: list-node-pools
      description: List node pools
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: oracle-container-engine-node-pools.listnodepools
      with:
        clusterId: tools.clusterId
      outputParameters:
      - type: object
        mapping: $.
    - name: create-node-pool
      description: Create a node pool
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: oracle-container-engine-node-pools.createnodepool
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-node-pool
      description: Get a node pool
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: oracle-container-engine-node-pools.getnodepool
      with:
        nodePoolId: tools.nodePoolId
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-node-pool
      description: Delete a node pool
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: oracle-container-engine-node-pools.deletenodepool
      with:
        nodePoolId: tools.nodePoolId
      outputParameters:
      - type: object
        mapping: $.