BigCommerce · Capability

BigCommerce Settings V3 — Catalog

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

Run with Naftiko BigcommerceCatalog

What You Can Do

GET
Getsettingscatalog — BigCommerce Get Catalog Settings
/v1/settings/catalog
PUT
Updatesettingscatalog — BigCommerce Update Catalog Settings
/v1/settings/catalog

MCP Tools

bigcommerce-get-catalog-settings

BigCommerce Get Catalog Settings

read-only idempotent
bigcommerce-update-catalog-settings

BigCommerce Update Catalog Settings

idempotent

Capability Spec

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