BigCommerce · Capability

BigCommerce Channels — Site

BigCommerce Channels — Site. 4 operations. Lead operation: BigCommerce Get a Channel Site. Self-contained Naftiko capability covering one Bigcommerce business surface.

Run with Naftiko BigcommerceSite

What You Can Do

GET
Getchannelsite — BigCommerce Get a Channel Site
/v1/channels/{channel-id}/site
PUT
Updatechannelsite — BigCommerce Update a Channel Site
/v1/channels/{channel-id}/site
POST
Createchannelsite — BigCommerce Create a Channel Site
/v1/channels/{channel-id}/site
DELETE
Deletechannelsite — BigCommerce Delete a Channel Site
/v1/channels/{channel-id}/site

MCP Tools

bigcommerce-get-channel-site

BigCommerce Get a Channel Site

read-only idempotent
bigcommerce-update-channel-site

BigCommerce Update a Channel Site

idempotent
bigcommerce-create-channel-site

BigCommerce Create a Channel Site

bigcommerce-delete-channel-site

BigCommerce Delete a Channel Site

idempotent

Capability Spec

channels-site.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: BigCommerce Channels — Site
  description: 'BigCommerce Channels — Site. 4 operations. Lead operation: BigCommerce Get a Channel Site. Self-contained
    Naftiko capability covering one Bigcommerce business surface.'
  tags:
  - Bigcommerce
  - Site
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    BIGCOMMERCE_API_KEY: BIGCOMMERCE_API_KEY
capability:
  consumes:
  - type: http
    namespace: channels-site
    baseUri: https://api.bigcommerce.com/stores/{store_hash}/v3
    description: BigCommerce Channels — Site business capability. Self-contained, no shared references.
    resources:
    - name: channels-channel_id-site
      path: /channels/{channel_id}/site
      operations:
      - name: getchannelsite
        method: GET
        description: BigCommerce Get a Channel Site
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updatechannelsite
        method: PUT
        description: BigCommerce Update a Channel Site
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: createchannelsite
        method: POST
        description: BigCommerce Create a Channel Site
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: deletechannelsite
        method: DELETE
        description: BigCommerce Delete a Channel Site
        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: channels-site-rest
    port: 8080
    description: REST adapter for BigCommerce Channels — Site. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/channels/{channel-id}/site
      name: channels-channel-id-site
      description: REST surface for channels-channel_id-site.
      operations:
      - method: GET
        name: getchannelsite
        description: BigCommerce Get a Channel Site
        call: channels-site.getchannelsite
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatechannelsite
        description: BigCommerce Update a Channel Site
        call: channels-site.updatechannelsite
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createchannelsite
        description: BigCommerce Create a Channel Site
        call: channels-site.createchannelsite
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletechannelsite
        description: BigCommerce Delete a Channel Site
        call: channels-site.deletechannelsite
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: channels-site-mcp
    port: 9090
    transport: http
    description: MCP adapter for BigCommerce Channels — Site. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: bigcommerce-get-channel-site
      description: BigCommerce Get a Channel Site
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: channels-site.getchannelsite
      outputParameters:
      - type: object
        mapping: $.
    - name: bigcommerce-update-channel-site
      description: BigCommerce Update a Channel Site
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: channels-site.updatechannelsite
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: bigcommerce-create-channel-site
      description: BigCommerce Create a Channel Site
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: channels-site.createchannelsite
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: bigcommerce-delete-channel-site
      description: BigCommerce Delete a Channel Site
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: channels-site.deletechannelsite
      outputParameters:
      - type: object
        mapping: $.