Amazon Launch Wizard · Capability

Amazon Launch Wizard API — Deployments

Amazon Launch Wizard API — Deployments. 5 operations. Lead operation: Amazon Launch Wizard Create Deployment. Self-contained Naftiko capability covering one Amazon Launch Wizard business surface.

Run with Naftiko Amazon Launch WizardDeployments

What You Can Do

POST
Createdeployment — Amazon Launch Wizard Create Deployment
/v1/deployments
GET
Listdeployments — Amazon Launch Wizard List Deployments
/v1/deployments
GET
Getdeployment — Amazon Launch Wizard Get Deployment
/v1/deployments/{deploymentid}
DELETE
Deletedeployment — Amazon Launch Wizard Delete Deployment
/v1/deployments/{deploymentid}
GET
Listworkloads — Amazon Launch Wizard List Workloads
/v1/workloads

MCP Tools

amazon-launch-wizard-create-deployment

Amazon Launch Wizard Create Deployment

amazon-launch-wizard-list-deployments

Amazon Launch Wizard List Deployments

read-only idempotent
amazon-launch-wizard-get-deployment

Amazon Launch Wizard Get Deployment

read-only idempotent
amazon-launch-wizard-delete-deployment

Amazon Launch Wizard Delete Deployment

idempotent
amazon-launch-wizard-list-workloads

Amazon Launch Wizard List Workloads

read-only idempotent

Capability Spec

amazon-launch-wizard-deployments.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Amazon Launch Wizard API — Deployments
  description: 'Amazon Launch Wizard API — Deployments. 5 operations. Lead operation: Amazon Launch Wizard Create Deployment.
    Self-contained Naftiko capability covering one Amazon Launch Wizard business surface.'
  tags:
  - Amazon Launch Wizard
  - Deployments
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    AMAZON_LAUNCH_WIZARD_API_KEY: AMAZON_LAUNCH_WIZARD_API_KEY
capability:
  consumes:
  - type: http
    namespace: amazon-launch-wizard-deployments
    baseUri: https://launchwizard.us-east-1.amazonaws.com
    description: Amazon Launch Wizard API — Deployments business capability. Self-contained, no shared references.
    resources:
    - name: deployments
      path: /deployments
      operations:
      - name: createdeployment
        method: POST
        description: Amazon Launch Wizard Create Deployment
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: listdeployments
        method: GET
        description: Amazon Launch Wizard List Deployments
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: deployments-deploymentId
      path: /deployments/{deploymentId}
      operations:
      - name: getdeployment
        method: GET
        description: Amazon Launch Wizard Get Deployment
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: deploymentId
          in: path
          type: string
          description: The ID of the deployment.
          required: true
      - name: deletedeployment
        method: DELETE
        description: Amazon Launch Wizard Delete Deployment
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: deploymentId
          in: path
          type: string
          description: The ID of the deployment.
          required: true
    - name: workloads
      path: /workloads
      operations:
      - name: listworkloads
        method: GET
        description: Amazon Launch Wizard List Workloads
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.AMAZON_LAUNCH_WIZARD_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: amazon-launch-wizard-deployments-rest
    port: 8080
    description: REST adapter for Amazon Launch Wizard API — Deployments. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/deployments
      name: deployments
      description: REST surface for deployments.
      operations:
      - method: POST
        name: createdeployment
        description: Amazon Launch Wizard Create Deployment
        call: amazon-launch-wizard-deployments.createdeployment
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: listdeployments
        description: Amazon Launch Wizard List Deployments
        call: amazon-launch-wizard-deployments.listdeployments
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/deployments/{deploymentid}
      name: deployments-deploymentid
      description: REST surface for deployments-deploymentId.
      operations:
      - method: GET
        name: getdeployment
        description: Amazon Launch Wizard Get Deployment
        call: amazon-launch-wizard-deployments.getdeployment
        with:
          deploymentId: rest.deploymentId
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletedeployment
        description: Amazon Launch Wizard Delete Deployment
        call: amazon-launch-wizard-deployments.deletedeployment
        with:
          deploymentId: rest.deploymentId
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/workloads
      name: workloads
      description: REST surface for workloads.
      operations:
      - method: GET
        name: listworkloads
        description: Amazon Launch Wizard List Workloads
        call: amazon-launch-wizard-deployments.listworkloads
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: amazon-launch-wizard-deployments-mcp
    port: 9090
    transport: http
    description: MCP adapter for Amazon Launch Wizard API — Deployments. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: amazon-launch-wizard-create-deployment
      description: Amazon Launch Wizard Create Deployment
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: amazon-launch-wizard-deployments.createdeployment
      outputParameters:
      - type: object
        mapping: $.
    - name: amazon-launch-wizard-list-deployments
      description: Amazon Launch Wizard List Deployments
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: amazon-launch-wizard-deployments.listdeployments
      outputParameters:
      - type: object
        mapping: $.
    - name: amazon-launch-wizard-get-deployment
      description: Amazon Launch Wizard Get Deployment
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: amazon-launch-wizard-deployments.getdeployment
      with:
        deploymentId: tools.deploymentId
      outputParameters:
      - type: object
        mapping: $.
    - name: amazon-launch-wizard-delete-deployment
      description: Amazon Launch Wizard Delete Deployment
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: amazon-launch-wizard-deployments.deletedeployment
      with:
        deploymentId: tools.deploymentId
      outputParameters:
      - type: object
        mapping: $.
    - name: amazon-launch-wizard-list-workloads
      description: Amazon Launch Wizard List Workloads
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: amazon-launch-wizard-deployments.listworkloads
      outputParameters:
      - type: object
        mapping: $.