BigCommerce · Capability

BigCommerce Catalog - Product Modifiers — Values

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

Run with Naftiko BigcommerceValues

What You Can Do

GET
Getproductmodifiervalues — BigCommerce Get All Product Modifier Values
/v1/catalog/products/{product-id}/modifiers/{modifier-id}/values
POST
Createproductmodifiervalue — BigCommerce Create Product Modifier Value
/v1/catalog/products/{product-id}/modifiers/{modifier-id}/values
GET
Getproductmodifiervalue — BigCommerce Get a Product Modifier Value
/v1/catalog/products/{product-id}/modifiers/{modifier-id}/values/{value-id}
PUT
Updateproductmodifiervalue — BigCommerce Update a Product Modifier Value
/v1/catalog/products/{product-id}/modifiers/{modifier-id}/values/{value-id}
DELETE
Deleteproductmodifiervalue — BigCommerce Delete Product Modifier Value
/v1/catalog/products/{product-id}/modifiers/{modifier-id}/values/{value-id}

MCP Tools

bigcommerce-get-all-product-modifier

BigCommerce Get All Product Modifier Values

read-only idempotent
bigcommerce-create-product-modifier-value

BigCommerce Create Product Modifier Value

bigcommerce-get-product-modifier-value

BigCommerce Get a Product Modifier Value

read-only idempotent
bigcommerce-update-product-modifier-value

BigCommerce Update a Product Modifier Value

idempotent
bigcommerce-delete-product-modifier-value

BigCommerce Delete Product Modifier Value

idempotent

Capability Spec

catalog-product-modifiers-values.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: BigCommerce Catalog - Product Modifiers — Values
  description: 'BigCommerce Catalog - Product Modifiers — Values. 5 operations. Lead operation: BigCommerce Get All Product
    Modifier Values. Self-contained Naftiko capability covering one Bigcommerce business surface.'
  tags:
  - Bigcommerce
  - Values
  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-modifiers-values
    baseUri: https://api.bigcommerce.com/stores/{store_hash}/v3
    description: BigCommerce Catalog - Product Modifiers — Values business capability. Self-contained, no shared references.
    resources:
    - name: catalog-products-product_id-modifiers-modifier_id-values
      path: /catalog/products/{product_id}/modifiers/{modifier_id}/values
      operations:
      - name: getproductmodifiervalues
        method: GET
        description: BigCommerce Get All Product Modifier Values
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: modifier_id
          in: path
          type: integer
          description: The ID of the `Modifier`.
          required: true
        - 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: 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: createproductmodifiervalue
        method: POST
        description: BigCommerce Create Product Modifier Value
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: modifier_id
          in: path
          type: integer
          description: The ID of the `Modifier`.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: catalog-products-product_id-modifiers-modifier_id-values-value_id
      path: /catalog/products/{product_id}/modifiers/{modifier_id}/values/{value_id}
      operations:
      - name: getproductmodifiervalue
        method: GET
        description: BigCommerce Get a Product Modifier Value
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: modifier_id
          in: path
          type: integer
          description: The ID of the `Modifier`.
          required: true
        - name: value_id
          in: path
          type: integer
          description: The ID of the `Modifier/Option Value`.
          required: true
        - 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: updateproductmodifiervalue
        method: PUT
        description: BigCommerce Update a Product Modifier Value
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: modifier_id
          in: path
          type: integer
          description: The ID of the `Modifier`.
          required: true
        - name: value_id
          in: path
          type: integer
          description: The ID of the `Modifier/Option Value`.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteproductmodifiervalue
        method: DELETE
        description: BigCommerce Delete Product Modifier Value
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: modifier_id
          in: path
          type: integer
          description: The ID of the `Modifier`.
          required: true
        - name: value_id
          in: path
          type: integer
          description: The ID of the `Modifier/Option Value`.
          required: true
    authentication:
      type: apikey
      key: X-Auth-Token
      value: '{{env.BIGCOMMERCE_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: catalog-product-modifiers-values-rest
    port: 8080
    description: REST adapter for BigCommerce Catalog - Product Modifiers — Values. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/catalog/products/{product-id}/modifiers/{modifier-id}/values
      name: catalog-products-product-id-modifiers-modifier-id-values
      description: REST surface for catalog-products-product_id-modifiers-modifier_id-values.
      operations:
      - method: GET
        name: getproductmodifiervalues
        description: BigCommerce Get All Product Modifier Values
        call: catalog-product-modifiers-values.getproductmodifiervalues
        with:
          modifier_id: rest.modifier_id
          include_fields: rest.include_fields
          exclude_fields: rest.exclude_fields
          page: rest.page
          limit: rest.limit
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createproductmodifiervalue
        description: BigCommerce Create Product Modifier Value
        call: catalog-product-modifiers-values.createproductmodifiervalue
        with:
          modifier_id: rest.modifier_id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/catalog/products/{product-id}/modifiers/{modifier-id}/values/{value-id}
      name: catalog-products-product-id-modifiers-modifier-id-values-value-id
      description: REST surface for catalog-products-product_id-modifiers-modifier_id-values-value_id.
      operations:
      - method: GET
        name: getproductmodifiervalue
        description: BigCommerce Get a Product Modifier Value
        call: catalog-product-modifiers-values.getproductmodifiervalue
        with:
          modifier_id: rest.modifier_id
          value_id: rest.value_id
          include_fields: rest.include_fields
          exclude_fields: rest.exclude_fields
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateproductmodifiervalue
        description: BigCommerce Update a Product Modifier Value
        call: catalog-product-modifiers-values.updateproductmodifiervalue
        with:
          modifier_id: rest.modifier_id
          value_id: rest.value_id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteproductmodifiervalue
        description: BigCommerce Delete Product Modifier Value
        call: catalog-product-modifiers-values.deleteproductmodifiervalue
        with:
          modifier_id: rest.modifier_id
          value_id: rest.value_id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: catalog-product-modifiers-values-mcp
    port: 9090
    transport: http
    description: MCP adapter for BigCommerce Catalog - Product Modifiers — Values. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: bigcommerce-get-all-product-modifier
      description: BigCommerce Get All Product Modifier Values
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: catalog-product-modifiers-values.getproductmodifiervalues
      with:
        modifier_id: tools.modifier_id
        include_fields: tools.include_fields
        exclude_fields: tools.exclude_fields
        page: tools.page
        limit: tools.limit
      outputParameters:
      - type: object
        mapping: $.
    - name: bigcommerce-create-product-modifier-value
      description: BigCommerce Create Product Modifier Value
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: catalog-product-modifiers-values.createproductmodifiervalue
      with:
        modifier_id: tools.modifier_id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: bigcommerce-get-product-modifier-value
      description: BigCommerce Get a Product Modifier Value
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: catalog-product-modifiers-values.getproductmodifiervalue
      with:
        modifier_id: tools.modifier_id
        value_id: tools.value_id
        include_fields: tools.include_fields
        exclude_fields: tools.exclude_fields
      outputParameters:
      - type: object
        mapping: $.
    - name: bigcommerce-update-product-modifier-value
      description: BigCommerce Update a Product Modifier Value
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: catalog-product-modifiers-values.updateproductmodifiervalue
      with:
        modifier_id: tools.modifier_id
        value_id: tools.value_id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: bigcommerce-delete-product-modifier-value
      description: BigCommerce Delete Product Modifier Value
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: catalog-product-modifiers-values.deleteproductmodifiervalue
      with:
        modifier_id: tools.modifier_id
        value_id: tools.value_id
      outputParameters:
      - type: object
        mapping: $.