Exoscale · Capability

Exoscale API — deploy-target

Exoscale API — deploy-target. 2 operations. Lead operation: List Deploy Targets. Self-contained Naftiko capability covering one Exoscale business surface.

Run with Naftiko Exoscaledeploy-target

What You Can Do

GET
Listdeploytargets — List Deploy Targets
/v1/deploy-target
GET
Getdeploytarget — Retrieve Deploy Target details
/v1/deploy-target/{id}

MCP Tools

list-deploy-targets

List Deploy Targets

read-only idempotent
retrieve-deploy-target-details

Retrieve Deploy Target details

read-only idempotent

Capability Spec

exoscale-deploy-target.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Exoscale API — deploy-target
  description: 'Exoscale API — deploy-target. 2 operations. Lead operation: List Deploy Targets. Self-contained Naftiko capability
    covering one Exoscale business surface.'
  tags:
  - Exoscale
  - deploy-target
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    EXOSCALE_API_KEY: EXOSCALE_API_KEY
capability:
  consumes:
  - type: http
    namespace: exoscale-deploy-target
    baseUri: https://api-{zone}.exoscale.com/v2
    description: Exoscale API — deploy-target business capability. Self-contained, no shared references.
    resources:
    - name: deploy-target
      path: /deploy-target
      operations:
      - name: listdeploytargets
        method: GET
        description: List Deploy Targets
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: deploy-target-id
      path: /deploy-target/{id}
      operations:
      - name: getdeploytarget
        method: GET
        description: Retrieve Deploy Target details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
  exposes:
  - type: rest
    namespace: exoscale-deploy-target-rest
    port: 8080
    description: REST adapter for Exoscale API — deploy-target. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/deploy-target
      name: deploy-target
      description: REST surface for deploy-target.
      operations:
      - method: GET
        name: listdeploytargets
        description: List Deploy Targets
        call: exoscale-deploy-target.listdeploytargets
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/deploy-target/{id}
      name: deploy-target-id
      description: REST surface for deploy-target-id.
      operations:
      - method: GET
        name: getdeploytarget
        description: Retrieve Deploy Target details
        call: exoscale-deploy-target.getdeploytarget
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: exoscale-deploy-target-mcp
    port: 9090
    transport: http
    description: MCP adapter for Exoscale API — deploy-target. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: list-deploy-targets
      description: List Deploy Targets
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: exoscale-deploy-target.listdeploytargets
      outputParameters:
      - type: object
        mapping: $.
    - name: retrieve-deploy-target-details
      description: Retrieve Deploy Target details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: exoscale-deploy-target.getdeploytarget
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.