Advanced Micro Devices · Capability

AMD Developer Cloud API — Instances

AMD Developer Cloud API — Instances. 4 operations. Lead operation: AMD Developer Cloud List GPU Instances. Self-contained Naftiko capability covering one Advanced Micro Devices business surface.

Run with Naftiko Advanced Micro DevicesInstances

What You Can Do

GET
Listinstances — AMD Developer Cloud List GPU Instances
/v1/instances
POST
Createinstance — AMD Developer Cloud Create GPU Instance
/v1/instances
GET
Getinstance — AMD Developer Cloud Get GPU Instance
/v1/instances/{instanceid}
DELETE
Terminateinstance — AMD Developer Cloud Terminate GPU Instance
/v1/instances/{instanceid}

MCP Tools

amd-developer-cloud-list-gpu

AMD Developer Cloud List GPU Instances

read-only idempotent
amd-developer-cloud-create-gpu

AMD Developer Cloud Create GPU Instance

amd-developer-cloud-get-gpu

AMD Developer Cloud Get GPU Instance

read-only idempotent
amd-developer-cloud-terminate-gpu

AMD Developer Cloud Terminate GPU Instance

idempotent

Capability Spec

amd-developer-cloud-instances.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: AMD Developer Cloud API — Instances
  description: 'AMD Developer Cloud API — Instances. 4 operations. Lead operation: AMD Developer Cloud List GPU Instances.
    Self-contained Naftiko capability covering one Advanced Micro Devices business surface.'
  tags:
  - Advanced Micro Devices
  - Instances
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ADVANCED_MICRO_DEVICES_API_KEY: ADVANCED_MICRO_DEVICES_API_KEY
capability:
  consumes:
  - type: http
    namespace: amd-developer-cloud-instances
    baseUri: https://api.developer.amd.com/v1
    description: AMD Developer Cloud API — Instances business capability. Self-contained, no shared references.
    resources:
    - name: instances
      path: /instances
      operations:
      - name: listinstances
        method: GET
        description: AMD Developer Cloud List GPU Instances
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: status
          in: query
          type: string
          description: Filter by instance status.
        - name: gpuType
          in: query
          type: string
          description: Filter by GPU type (e.g., mi300x, mi250).
        - name: limit
          in: query
          type: integer
          description: Maximum number of instances to return.
        - name: offset
          in: query
          type: integer
          description: Pagination offset.
      - name: createinstance
        method: POST
        description: AMD Developer Cloud Create GPU Instance
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: instances-instanceId
      path: /instances/{instanceId}
      operations:
      - name: getinstance
        method: GET
        description: AMD Developer Cloud Get GPU Instance
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: instanceId
          in: path
          type: string
          description: GPU instance identifier.
          required: true
      - name: terminateinstance
        method: DELETE
        description: AMD Developer Cloud Terminate GPU Instance
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: instanceId
          in: path
          type: string
          description: GPU instance identifier.
          required: true
    authentication:
      type: apikey
      key: X-API-Key
      value: '{{env.ADVANCED_MICRO_DEVICES_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: amd-developer-cloud-instances-rest
    port: 8080
    description: REST adapter for AMD Developer Cloud API — Instances. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/instances
      name: instances
      description: REST surface for instances.
      operations:
      - method: GET
        name: listinstances
        description: AMD Developer Cloud List GPU Instances
        call: amd-developer-cloud-instances.listinstances
        with:
          status: rest.status
          gpuType: rest.gpuType
          limit: rest.limit
          offset: rest.offset
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createinstance
        description: AMD Developer Cloud Create GPU Instance
        call: amd-developer-cloud-instances.createinstance
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/instances/{instanceid}
      name: instances-instanceid
      description: REST surface for instances-instanceId.
      operations:
      - method: GET
        name: getinstance
        description: AMD Developer Cloud Get GPU Instance
        call: amd-developer-cloud-instances.getinstance
        with:
          instanceId: rest.instanceId
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: terminateinstance
        description: AMD Developer Cloud Terminate GPU Instance
        call: amd-developer-cloud-instances.terminateinstance
        with:
          instanceId: rest.instanceId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: amd-developer-cloud-instances-mcp
    port: 9090
    transport: http
    description: MCP adapter for AMD Developer Cloud API — Instances. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: amd-developer-cloud-list-gpu
      description: AMD Developer Cloud List GPU Instances
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: amd-developer-cloud-instances.listinstances
      with:
        status: tools.status
        gpuType: tools.gpuType
        limit: tools.limit
        offset: tools.offset
      outputParameters:
      - type: object
        mapping: $.
    - name: amd-developer-cloud-create-gpu
      description: AMD Developer Cloud Create GPU Instance
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: amd-developer-cloud-instances.createinstance
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: amd-developer-cloud-get-gpu
      description: AMD Developer Cloud Get GPU Instance
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: amd-developer-cloud-instances.getinstance
      with:
        instanceId: tools.instanceId
      outputParameters:
      - type: object
        mapping: $.
    - name: amd-developer-cloud-terminate-gpu
      description: AMD Developer Cloud Terminate GPU Instance
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: amd-developer-cloud-instances.terminateinstance
      with:
        instanceId: tools.instanceId
      outputParameters:
      - type: object
        mapping: $.