Exoscale · Capability

Exoscale API — instance-pool

Exoscale API — instance-pool. 8 operations. Lead operation: List Instance Pools. Self-contained Naftiko capability covering one Exoscale business surface.

Run with Naftiko Exoscaleinstance-pool

What You Can Do

GET
Listinstancepools — List Instance Pools
/v1/instance-pool
POST
Createinstancepool — Create an Instance Pool
/v1/instance-pool
DELETE
Deleteinstancepool — Delete an Instance Pool
/v1/instance-pool/{id}
GET
Getinstancepool — Retrieve Instance Pool details
/v1/instance-pool/{id}
PUT
Updateinstancepool — Update an Instance Pool
/v1/instance-pool/{id}
DELETE
Resetinstancepoolfield — Reset an Instance Pool field to its default value
/v1/instance-pool/{id}/{field}
PUT
Evictinstancepoolmembers — Evict Instance Pool members
/v1/instance-pool/id-evict
PUT
Scaleinstancepool — Scale an Instance Pool
/v1/instance-pool/id-scale

MCP Tools

list-instance-pools

List Instance Pools

read-only idempotent
create-instance-pool

Create an Instance Pool

delete-instance-pool

Delete an Instance Pool

idempotent
retrieve-instance-pool-details

Retrieve Instance Pool details

read-only idempotent
update-instance-pool

Update an Instance Pool

idempotent
reset-instance-pool-field-its

Reset an Instance Pool field to its default value

idempotent
evict-instance-pool-members

Evict Instance Pool members

idempotent
scale-instance-pool

Scale an Instance Pool

idempotent

Capability Spec

exoscale-instance-pool.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Exoscale API — instance-pool
  description: 'Exoscale API — instance-pool. 8 operations. Lead operation: List Instance Pools. Self-contained Naftiko capability
    covering one Exoscale business surface.'
  tags:
  - Exoscale
  - instance-pool
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    EXOSCALE_API_KEY: EXOSCALE_API_KEY
capability:
  consumes:
  - type: http
    namespace: exoscale-instance-pool
    baseUri: https://api-{zone}.exoscale.com/v2
    description: Exoscale API — instance-pool business capability. Self-contained, no shared references.
    resources:
    - name: instance-pool
      path: /instance-pool
      operations:
      - name: listinstancepools
        method: GET
        description: List Instance Pools
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createinstancepool
        method: POST
        description: Create an Instance Pool
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: instance-pool-id
      path: /instance-pool/{id}
      operations:
      - name: deleteinstancepool
        method: DELETE
        description: Delete an Instance Pool
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
      - name: getinstancepool
        method: GET
        description: Retrieve Instance Pool details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
      - name: updateinstancepool
        method: PUT
        description: Update an Instance Pool
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: instance-pool-id-field
      path: /instance-pool/{id}/{field}
      operations:
      - name: resetinstancepoolfield
        method: DELETE
        description: Reset an Instance Pool field to its default value
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
        - name: field
          in: path
          type: string
          required: true
    - name: instance-pool-id}:evict
      path: /instance-pool/{id}:evict
      operations:
      - name: evictinstancepoolmembers
        method: PUT
        description: Evict Instance Pool members
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: instance-pool-id}:scale
      path: /instance-pool/{id}:scale
      operations:
      - name: scaleinstancepool
        method: PUT
        description: Scale an Instance Pool
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
  exposes:
  - type: rest
    namespace: exoscale-instance-pool-rest
    port: 8080
    description: REST adapter for Exoscale API — instance-pool. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/instance-pool
      name: instance-pool
      description: REST surface for instance-pool.
      operations:
      - method: GET
        name: listinstancepools
        description: List Instance Pools
        call: exoscale-instance-pool.listinstancepools
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createinstancepool
        description: Create an Instance Pool
        call: exoscale-instance-pool.createinstancepool
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/instance-pool/{id}
      name: instance-pool-id
      description: REST surface for instance-pool-id.
      operations:
      - method: DELETE
        name: deleteinstancepool
        description: Delete an Instance Pool
        call: exoscale-instance-pool.deleteinstancepool
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: getinstancepool
        description: Retrieve Instance Pool details
        call: exoscale-instance-pool.getinstancepool
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateinstancepool
        description: Update an Instance Pool
        call: exoscale-instance-pool.updateinstancepool
        with:
          id: rest.id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/instance-pool/{id}/{field}
      name: instance-pool-id-field
      description: REST surface for instance-pool-id-field.
      operations:
      - method: DELETE
        name: resetinstancepoolfield
        description: Reset an Instance Pool field to its default value
        call: exoscale-instance-pool.resetinstancepoolfield
        with:
          id: rest.id
          field: rest.field
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/instance-pool/id-evict
      name: instance-pool-id-evict
      description: REST surface for instance-pool-id}:evict.
      operations:
      - method: PUT
        name: evictinstancepoolmembers
        description: Evict Instance Pool members
        call: exoscale-instance-pool.evictinstancepoolmembers
        with:
          id: rest.id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/instance-pool/id-scale
      name: instance-pool-id-scale
      description: REST surface for instance-pool-id}:scale.
      operations:
      - method: PUT
        name: scaleinstancepool
        description: Scale an Instance Pool
        call: exoscale-instance-pool.scaleinstancepool
        with:
          id: rest.id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: exoscale-instance-pool-mcp
    port: 9090
    transport: http
    description: MCP adapter for Exoscale API — instance-pool. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: list-instance-pools
      description: List Instance Pools
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: exoscale-instance-pool.listinstancepools
      outputParameters:
      - type: object
        mapping: $.
    - name: create-instance-pool
      description: Create an Instance Pool
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: exoscale-instance-pool.createinstancepool
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-instance-pool
      description: Delete an Instance Pool
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: exoscale-instance-pool.deleteinstancepool
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: retrieve-instance-pool-details
      description: Retrieve Instance Pool details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: exoscale-instance-pool.getinstancepool
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: update-instance-pool
      description: Update an Instance Pool
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: exoscale-instance-pool.updateinstancepool
      with:
        id: tools.id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: reset-instance-pool-field-its
      description: Reset an Instance Pool field to its default value
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: exoscale-instance-pool.resetinstancepoolfield
      with:
        id: tools.id
        field: tools.field
      outputParameters:
      - type: object
        mapping: $.
    - name: evict-instance-pool-members
      description: Evict Instance Pool members
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: exoscale-instance-pool.evictinstancepoolmembers
      with:
        id: tools.id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: scale-instance-pool
      description: Scale an Instance Pool
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: exoscale-instance-pool.scaleinstancepool
      with:
        id: tools.id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.