AWS CloudFormation · Capability

AWS CloudFormation API — Stack Sets

AWS CloudFormation API — Stack Sets. 5 operations. Lead operation: Create a Stack Set. Self-contained Naftiko capability covering one Cloudformation business surface.

Run with Naftiko CloudformationStack Sets

What You Can Do

POST
Createstackset — Create a Stack Set
/v1/action-createstackset
POST
Deletestackset — Delete a Stack Set
/v1/action-deletestackset
POST
Describestackset — Describe a Stack Set
/v1/action-describestackset
POST
Liststacksets — List All Stack Sets
/v1/action-liststacksets
POST
Updatestackset — Update a Stack Set
/v1/action-updatestackset

MCP Tools

create-stack-set

Create a Stack Set

delete-stack-set

Delete a Stack Set

describe-stack-set

Describe a Stack Set

list-all-stack-sets

List All Stack Sets

read-only
update-stack-set

Update a Stack Set

Capability Spec

cloudformation-stack-sets.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: AWS CloudFormation API — Stack Sets
  description: 'AWS CloudFormation API — Stack Sets. 5 operations. Lead operation: Create a Stack Set. Self-contained Naftiko
    capability covering one Cloudformation business surface.'
  tags:
  - Cloudformation
  - Stack Sets
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    CLOUDFORMATION_API_KEY: CLOUDFORMATION_API_KEY
capability:
  consumes:
  - type: http
    namespace: cloudformation-stack-sets
    baseUri: https://cloudformation.{region}.amazonaws.com
    description: AWS CloudFormation API — Stack Sets business capability. Self-contained, no shared references.
    resources:
    - name: ?Action=CreateStackSet
      path: /?Action=CreateStackSet
      operations:
      - name: createstackset
        method: POST
        description: Create a Stack Set
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: ?Action=DeleteStackSet
      path: /?Action=DeleteStackSet
      operations:
      - name: deletestackset
        method: POST
        description: Delete a Stack Set
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: ?Action=DescribeStackSet
      path: /?Action=DescribeStackSet
      operations:
      - name: describestackset
        method: POST
        description: Describe a Stack Set
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: ?Action=ListStackSets
      path: /?Action=ListStackSets
      operations:
      - name: liststacksets
        method: POST
        description: List All Stack Sets
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: ?Action=UpdateStackSet
      path: /?Action=UpdateStackSet
      operations:
      - name: updatestackset
        method: POST
        description: Update a Stack Set
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.CLOUDFORMATION_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: cloudformation-stack-sets-rest
    port: 8080
    description: REST adapter for AWS CloudFormation API — Stack Sets. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/action-createstackset
      name: action-createstackset
      description: REST surface for ?Action=CreateStackSet.
      operations:
      - method: POST
        name: createstackset
        description: Create a Stack Set
        call: cloudformation-stack-sets.createstackset
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/action-deletestackset
      name: action-deletestackset
      description: REST surface for ?Action=DeleteStackSet.
      operations:
      - method: POST
        name: deletestackset
        description: Delete a Stack Set
        call: cloudformation-stack-sets.deletestackset
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/action-describestackset
      name: action-describestackset
      description: REST surface for ?Action=DescribeStackSet.
      operations:
      - method: POST
        name: describestackset
        description: Describe a Stack Set
        call: cloudformation-stack-sets.describestackset
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/action-liststacksets
      name: action-liststacksets
      description: REST surface for ?Action=ListStackSets.
      operations:
      - method: POST
        name: liststacksets
        description: List All Stack Sets
        call: cloudformation-stack-sets.liststacksets
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/action-updatestackset
      name: action-updatestackset
      description: REST surface for ?Action=UpdateStackSet.
      operations:
      - method: POST
        name: updatestackset
        description: Update a Stack Set
        call: cloudformation-stack-sets.updatestackset
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: cloudformation-stack-sets-mcp
    port: 9090
    transport: http
    description: MCP adapter for AWS CloudFormation API — Stack Sets. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: create-stack-set
      description: Create a Stack Set
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: cloudformation-stack-sets.createstackset
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-stack-set
      description: Delete a Stack Set
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: cloudformation-stack-sets.deletestackset
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: describe-stack-set
      description: Describe a Stack Set
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: cloudformation-stack-sets.describestackset
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: list-all-stack-sets
      description: List All Stack Sets
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: cloudformation-stack-sets.liststacksets
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: update-stack-set
      description: Update a Stack Set
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: cloudformation-stack-sets.updatestackset
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.