BigCommerce · Capability

BigCommerce Checkouts — Checkout Settings

BigCommerce Checkouts — Checkout Settings. 2 operations. Lead operation: BigCommerce Get Checkout Settings. Self-contained Naftiko capability covering one Bigcommerce business surface.

Run with Naftiko BigcommerceCheckout Settings

What You Can Do

GET
Getcheckoutsettings — BigCommerce Get Checkout Settings
/v1/checkouts/settings
PUT
Updatecheckoutsettings — BigCommerce Update Checkout Settings
/v1/checkouts/settings

MCP Tools

bigcommerce-get-checkout-settings

BigCommerce Get Checkout Settings

read-only idempotent
bigcommerce-update-checkout-settings

BigCommerce Update Checkout Settings

idempotent

Capability Spec

checkouts-checkout-settings.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: BigCommerce Checkouts — Checkout Settings
  description: 'BigCommerce Checkouts — Checkout Settings. 2 operations. Lead operation: BigCommerce Get Checkout Settings.
    Self-contained Naftiko capability covering one Bigcommerce business surface.'
  tags:
  - Bigcommerce
  - Checkout Settings
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    BIGCOMMERCE_API_KEY: BIGCOMMERCE_API_KEY
capability:
  consumes:
  - type: http
    namespace: checkouts-checkout-settings
    baseUri: https://api.bigcommerce.com/stores/{store_hash}/v3
    description: BigCommerce Checkouts — Checkout Settings business capability. Self-contained, no shared references.
    resources:
    - name: checkouts-settings
      path: /checkouts/settings
      operations:
      - name: getcheckoutsettings
        method: GET
        description: BigCommerce Get Checkout Settings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updatecheckoutsettings
        method: PUT
        description: BigCommerce Update Checkout Settings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: apikey
      key: X-Auth-Token
      value: '{{env.BIGCOMMERCE_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: checkouts-checkout-settings-rest
    port: 8080
    description: REST adapter for BigCommerce Checkouts — Checkout Settings. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/checkouts/settings
      name: checkouts-settings
      description: REST surface for checkouts-settings.
      operations:
      - method: GET
        name: getcheckoutsettings
        description: BigCommerce Get Checkout Settings
        call: checkouts-checkout-settings.getcheckoutsettings
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatecheckoutsettings
        description: BigCommerce Update Checkout Settings
        call: checkouts-checkout-settings.updatecheckoutsettings
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: checkouts-checkout-settings-mcp
    port: 9090
    transport: http
    description: MCP adapter for BigCommerce Checkouts — Checkout Settings. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: bigcommerce-get-checkout-settings
      description: BigCommerce Get Checkout Settings
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: checkouts-checkout-settings.getcheckoutsettings
      outputParameters:
      - type: object
        mapping: $.
    - name: bigcommerce-update-checkout-settings
      description: BigCommerce Update Checkout Settings
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: checkouts-checkout-settings.updatecheckoutsettings
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.