BigCommerce · Capability

BigCommerce Catalog - Categories — Images

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

Run with Naftiko BigcommerceImages

What You Can Do

POST
Createcategoryimage — BigCommerce Create a Category Image
/v1/catalog/categories/{category-id}/image
DELETE
Deletecategoryimage — BigCommerce Delete a Category Image
/v1/catalog/categories/{category-id}/image

MCP Tools

bigcommerce-create-category-image

BigCommerce Create a Category Image

bigcommerce-delete-category-image

BigCommerce Delete a Category Image

idempotent

Capability Spec

catalog-categories-images.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: BigCommerce Catalog - Categories — Images
  description: 'BigCommerce Catalog - Categories — Images. 2 operations. Lead operation: BigCommerce Create a Category 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-categories-images
    baseUri: https://api.bigcommerce.com/stores/{store_hash}/v3
    description: BigCommerce Catalog - Categories — Images business capability. Self-contained, no shared references.
    resources:
    - name: catalog-categories-category_id-image
      path: /catalog/categories/{category_id}/image
      operations:
      - name: createcategoryimage
        method: POST
        description: BigCommerce Create a Category Image
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: deletecategoryimage
        method: DELETE
        description: BigCommerce Delete a Category 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-categories-images-rest
    port: 8080
    description: REST adapter for BigCommerce Catalog - Categories — Images. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/catalog/categories/{category-id}/image
      name: catalog-categories-category-id-image
      description: REST surface for catalog-categories-category_id-image.
      operations:
      - method: POST
        name: createcategoryimage
        description: BigCommerce Create a Category Image
        call: catalog-categories-images.createcategoryimage
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletecategoryimage
        description: BigCommerce Delete a Category Image
        call: catalog-categories-images.deletecategoryimage
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: catalog-categories-images-mcp
    port: 9090
    transport: http
    description: MCP adapter for BigCommerce Catalog - Categories — Images. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: bigcommerce-create-category-image
      description: BigCommerce Create a Category Image
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: catalog-categories-images.createcategoryimage
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: bigcommerce-delete-category-image
      description: BigCommerce Delete a Category Image
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: catalog-categories-images.deletecategoryimage
      outputParameters:
      - type: object
        mapping: $.