BigCommerce · Capability

BigCommerce Catalog - Brands — Images

BigCommerce Catalog - Brands — Images. 2 operations. Lead operation: BigCommerce Create a Brand Image. Self-contained Naftiko capability covering one Bigcommerce business surface.

Run with Naftiko BigcommerceImages

What You Can Do

POST
Createbrandimage — BigCommerce Create a Brand Image
/v1/catalog/brands/{brand-id}/image
DELETE
Deletebrandimage — BigCommerce Delete a Brand Image
/v1/catalog/brands/{brand-id}/image

MCP Tools

bigcommerce-create-brand-image

BigCommerce Create a Brand Image

bigcommerce-delete-brand-image

BigCommerce Delete a Brand Image

idempotent

Capability Spec

catalog-brands-images.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: BigCommerce Catalog - Brands — Images
  description: 'BigCommerce Catalog - Brands — Images. 2 operations. Lead operation: BigCommerce Create a Brand Image. Self-contained
    Naftiko capability covering one Bigcommerce business surface.'
  tags:
  - Bigcommerce
  - Images
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    BIGCOMMERCE_API_KEY: BIGCOMMERCE_API_KEY
capability:
  consumes:
  - type: http
    namespace: catalog-brands-images
    baseUri: https://api.bigcommerce.com/stores/{store_hash}/v3
    description: BigCommerce Catalog - Brands — Images business capability. Self-contained, no shared references.
    resources:
    - name: catalog-brands-brand_id-image
      path: /catalog/brands/{brand_id}/image
      operations:
      - name: createbrandimage
        method: POST
        description: BigCommerce Create a Brand Image
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: deletebrandimage
        method: DELETE
        description: BigCommerce Delete a Brand Image
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: apikey
      key: X-Auth-Token
      value: '{{env.BIGCOMMERCE_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: catalog-brands-images-rest
    port: 8080
    description: REST adapter for BigCommerce Catalog - Brands — Images. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/catalog/brands/{brand-id}/image
      name: catalog-brands-brand-id-image
      description: REST surface for catalog-brands-brand_id-image.
      operations:
      - method: POST
        name: createbrandimage
        description: BigCommerce Create a Brand Image
        call: catalog-brands-images.createbrandimage
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletebrandimage
        description: BigCommerce Delete a Brand Image
        call: catalog-brands-images.deletebrandimage
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: catalog-brands-images-mcp
    port: 9090
    transport: http
    description: MCP adapter for BigCommerce Catalog - Brands — Images. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: bigcommerce-create-brand-image
      description: BigCommerce Create a Brand Image
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: catalog-brands-images.createbrandimage
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: bigcommerce-delete-brand-image
      description: BigCommerce Delete a Brand Image
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: catalog-brands-images.deletebrandimage
      outputParameters:
      - type: object
        mapping: $.