AWS CloudFormation · Capability

AWS CloudFormation API — Registry

AWS CloudFormation API — Registry. 2 operations. Lead operation: Describe an Extension Type in the Registry. Self-contained Naftiko capability covering one Cloudformation business surface.

Run with Naftiko CloudformationRegistry

What You Can Do

POST
Describetype — Describe an Extension Type in the Registry
/v1/action-describetype
POST
Listtypes — List Available Extension Types in the Registry
/v1/action-listtypes

MCP Tools

describe-extension-type-registry

Describe an Extension Type in the Registry

list-available-extension-types-registry

List Available Extension Types in the Registry

read-only

Capability Spec

cloudformation-registry.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: AWS CloudFormation API — Registry
  description: 'AWS CloudFormation API — Registry. 2 operations. Lead operation: Describe an Extension Type in the Registry.
    Self-contained Naftiko capability covering one Cloudformation business surface.'
  tags:
  - Cloudformation
  - Registry
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    CLOUDFORMATION_API_KEY: CLOUDFORMATION_API_KEY
capability:
  consumes:
  - type: http
    namespace: cloudformation-registry
    baseUri: https://cloudformation.{region}.amazonaws.com
    description: AWS CloudFormation API — Registry business capability. Self-contained, no shared references.
    resources:
    - name: ?Action=DescribeType
      path: /?Action=DescribeType
      operations:
      - name: describetype
        method: POST
        description: Describe an Extension Type in the Registry
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: ?Action=ListTypes
      path: /?Action=ListTypes
      operations:
      - name: listtypes
        method: POST
        description: List Available Extension Types in the Registry
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.CLOUDFORMATION_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: cloudformation-registry-rest
    port: 8080
    description: REST adapter for AWS CloudFormation API — Registry. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/action-describetype
      name: action-describetype
      description: REST surface for ?Action=DescribeType.
      operations:
      - method: POST
        name: describetype
        description: Describe an Extension Type in the Registry
        call: cloudformation-registry.describetype
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/action-listtypes
      name: action-listtypes
      description: REST surface for ?Action=ListTypes.
      operations:
      - method: POST
        name: listtypes
        description: List Available Extension Types in the Registry
        call: cloudformation-registry.listtypes
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: cloudformation-registry-mcp
    port: 9090
    transport: http
    description: MCP adapter for AWS CloudFormation API — Registry. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: describe-extension-type-registry
      description: Describe an Extension Type in the Registry
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: cloudformation-registry.describetype
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: list-available-extension-types-registry
      description: List Available Extension Types in the Registry
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: cloudformation-registry.listtypes
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.