BigCommerce · Capability

BigCommerce Catalog - Product Variant Options — Product Variant Options

BigCommerce Catalog - Product Variant Options — Product Variant Options. 5 operations. Lead operation: BigCommerce Get All Product Variant Options. Self-contained Naftiko capability covering one Bigcommerce business surface.

Run with Naftiko BigcommerceProduct Variant Options

What You Can Do

GET
Getproductvariantoptions — BigCommerce Get All Product Variant Options
/v1/catalog/products/{product-id}/options
POST
Createproductvariantoption — BigCommerce Create a Product Variant Option
/v1/catalog/products/{product-id}/options
GET
Getproductvariantoption — BigCommerce Get a Product Variant Option
/v1/catalog/products/{product-id}/options/{option-id}
PUT
Updateproductvariantoption — BigCommerce Update a Product Variant Option
/v1/catalog/products/{product-id}/options/{option-id}
DELETE
Deleteproductvariantoption — BigCommerce Delete a Product Variant Option
/v1/catalog/products/{product-id}/options/{option-id}

MCP Tools

bigcommerce-get-all-product-variant

BigCommerce Get All Product Variant Options

read-only idempotent
bigcommerce-create-product-variant-option

BigCommerce Create a Product Variant Option

bigcommerce-get-product-variant-option

BigCommerce Get a Product Variant Option

read-only idempotent
bigcommerce-update-product-variant-option

BigCommerce Update a Product Variant Option

idempotent
bigcommerce-delete-product-variant-option

BigCommerce Delete a Product Variant Option

idempotent

Capability Spec

catalog-product-variant-options-product-variant-options.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: BigCommerce Catalog - Product Variant Options — Product Variant Options
  description: 'BigCommerce Catalog - Product Variant Options — Product Variant Options. 5 operations. Lead operation: BigCommerce
    Get All Product Variant Options. Self-contained Naftiko capability covering one Bigcommerce business surface.'
  tags:
  - Bigcommerce
  - Product Variant Options
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    BIGCOMMERCE_API_KEY: BIGCOMMERCE_API_KEY
capability:
  consumes:
  - type: http
    namespace: catalog-product-variant-options-product-variant-options
    baseUri: https://api.bigcommerce.com/stores/{store_hash}/v3
    description: BigCommerce Catalog - Product Variant Options — Product Variant Options business capability. Self-contained,
      no shared references.
    resources:
    - name: catalog-products-product_id-options
      path: /catalog/products/{product_id}/options
      operations:
      - name: getproductvariantoptions
        method: GET
        description: BigCommerce Get All Product Variant Options
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: page
          in: query
          type: integer
          description: Specifies the page number in a limited (paginated) list of products.
        - name: limit
          in: query
          type: integer
          description: Controls the number of items per page in a limited (paginated) list of products.
        - name: include_fields
          in: query
          type: string
          description: Fields to include, in a comma-separated list. The ID and the specified fields will be returned.
        - name: exclude_fields
          in: query
          type: string
          description: Fields to exclude, in a comma-separated list. The specified fields will be excluded from a response.
            The ID cannot be excluded.
      - name: createproductvariantoption
        method: POST
        description: BigCommerce Create a Product Variant Option
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: catalog-products-product_id-options-option_id
      path: /catalog/products/{product_id}/options/{option_id}
      operations:
      - name: getproductvariantoption
        method: GET
        description: BigCommerce Get a Product Variant Option
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: include_fields
          in: query
          type: string
          description: Fields to include, in a comma-separated list. The ID and the specified fields will be returned.
        - name: exclude_fields
          in: query
          type: string
          description: Fields to exclude, in a comma-separated list. The specified fields will be excluded from a response.
            The ID cannot be excluded.
      - name: updateproductvariantoption
        method: PUT
        description: BigCommerce Update a Product Variant Option
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteproductvariantoption
        method: DELETE
        description: BigCommerce Delete a Product Variant Option
        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-product-variant-options-product-variant-options-rest
    port: 8080
    description: REST adapter for BigCommerce Catalog - Product Variant Options — Product Variant Options. One Spectral-compliant
      resource per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/catalog/products/{product-id}/options
      name: catalog-products-product-id-options
      description: REST surface for catalog-products-product_id-options.
      operations:
      - method: GET
        name: getproductvariantoptions
        description: BigCommerce Get All Product Variant Options
        call: catalog-product-variant-options-product-variant-options.getproductvariantoptions
        with:
          page: rest.page
          limit: rest.limit
          include_fields: rest.include_fields
          exclude_fields: rest.exclude_fields
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createproductvariantoption
        description: BigCommerce Create a Product Variant Option
        call: catalog-product-variant-options-product-variant-options.createproductvariantoption
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/catalog/products/{product-id}/options/{option-id}
      name: catalog-products-product-id-options-option-id
      description: REST surface for catalog-products-product_id-options-option_id.
      operations:
      - method: GET
        name: getproductvariantoption
        description: BigCommerce Get a Product Variant Option
        call: catalog-product-variant-options-product-variant-options.getproductvariantoption
        with:
          include_fields: rest.include_fields
          exclude_fields: rest.exclude_fields
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateproductvariantoption
        description: BigCommerce Update a Product Variant Option
        call: catalog-product-variant-options-product-variant-options.updateproductvariantoption
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteproductvariantoption
        description: BigCommerce Delete a Product Variant Option
        call: catalog-product-variant-options-product-variant-options.deleteproductvariantoption
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: catalog-product-variant-options-product-variant-options-mcp
    port: 9090
    transport: http
    description: MCP adapter for BigCommerce Catalog - Product Variant Options — Product Variant Options. One tool per consumed
      operation, routed inline through this capability's consumes block.
    tools:
    - name: bigcommerce-get-all-product-variant
      description: BigCommerce Get All Product Variant Options
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: catalog-product-variant-options-product-variant-options.getproductvariantoptions
      with:
        page: tools.page
        limit: tools.limit
        include_fields: tools.include_fields
        exclude_fields: tools.exclude_fields
      outputParameters:
      - type: object
        mapping: $.
    - name: bigcommerce-create-product-variant-option
      description: BigCommerce Create a Product Variant Option
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: catalog-product-variant-options-product-variant-options.createproductvariantoption
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: bigcommerce-get-product-variant-option
      description: BigCommerce Get a Product Variant Option
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: catalog-product-variant-options-product-variant-options.getproductvariantoption
      with:
        include_fields: tools.include_fields
        exclude_fields: tools.exclude_fields
      outputParameters:
      - type: object
        mapping: $.
    - name: bigcommerce-update-product-variant-option
      description: BigCommerce Update a Product Variant Option
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: catalog-product-variant-options-product-variant-options.updateproductvariantoption
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: bigcommerce-delete-product-variant-option
      description: BigCommerce Delete a Product Variant Option
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: catalog-product-variant-options-product-variant-options.deleteproductvariantoption
      outputParameters:
      - type: object
        mapping: $.