BigCommerce · Capability

BigCommerce Channels — Menus

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

Run with Naftiko BigcommerceMenus

What You Can Do

GET
Getchannelmenus — BigCommerce Get Channel Menus
/v1/channels/{channel-id}/channel-menus
POST
Createchannelmenus — BigCommerce Create Channel Menus
/v1/channels/{channel-id}/channel-menus
DELETE
Deletechannelmenus — BigCommerce Delete Channel Menus
/v1/channels/{channel-id}/channel-menus

MCP Tools

bigcommerce-get-channel-menus

BigCommerce Get Channel Menus

read-only idempotent
bigcommerce-create-channel-menus

BigCommerce Create Channel Menus

bigcommerce-delete-channel-menus

BigCommerce Delete Channel Menus

idempotent

Capability Spec

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