Exoscale · Capability

Exoscale API — instance-type

Exoscale API — instance-type. 2 operations. Lead operation: List Compute instance Types. Self-contained Naftiko capability covering one Exoscale business surface.

Run with Naftiko Exoscaleinstance-type

What You Can Do

GET
Listinstancetypes — List Compute instance Types
/v1/instance-type
GET
Getinstancetype — Retrieve Instance Type details
/v1/instance-type/{id}

MCP Tools

list-compute-instance-types

List Compute instance Types

read-only idempotent
retrieve-instance-type-details

Retrieve Instance Type details

read-only idempotent

Capability Spec

exoscale-instance-type.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Exoscale API — instance-type
  description: 'Exoscale API — instance-type. 2 operations. Lead operation: List Compute instance Types. Self-contained Naftiko
    capability covering one Exoscale business surface.'
  tags:
  - Exoscale
  - instance-type
  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-type
    baseUri: https://api-{zone}.exoscale.com/v2
    description: Exoscale API — instance-type business capability. Self-contained, no shared references.
    resources:
    - name: instance-type
      path: /instance-type
      operations:
      - name: listinstancetypes
        method: GET
        description: List Compute instance Types
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: instance-type-id
      path: /instance-type/{id}
      operations:
      - name: getinstancetype
        method: GET
        description: Retrieve Instance Type details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
  exposes:
  - type: rest
    namespace: exoscale-instance-type-rest
    port: 8080
    description: REST adapter for Exoscale API — instance-type. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/instance-type
      name: instance-type
      description: REST surface for instance-type.
      operations:
      - method: GET
        name: listinstancetypes
        description: List Compute instance Types
        call: exoscale-instance-type.listinstancetypes
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/instance-type/{id}
      name: instance-type-id
      description: REST surface for instance-type-id.
      operations:
      - method: GET
        name: getinstancetype
        description: Retrieve Instance Type details
        call: exoscale-instance-type.getinstancetype
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: exoscale-instance-type-mcp
    port: 9090
    transport: http
    description: MCP adapter for Exoscale API — instance-type. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: list-compute-instance-types
      description: List Compute instance Types
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: exoscale-instance-type.listinstancetypes
      outputParameters:
      - type: object
        mapping: $.
    - name: retrieve-instance-type-details
      description: Retrieve Instance Type details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: exoscale-instance-type.getinstancetype
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.