BigCommerce · Capability

BigCommerce Themes — Theme Actions

BigCommerce Themes — Theme Actions. 2 operations. Lead operation: BigCommerce Activate a Theme. Self-contained Naftiko capability covering one Bigcommerce business surface.

Run with Naftiko BigcommerceTheme Actions

What You Can Do

POST
Activatestoretheme — BigCommerce Activate a Theme
/v1/themes/actions/activate
POST
Downloadstoretheme — BigCommerce Download a Theme
/v1/themes/{uuid}/actions/download

MCP Tools

bigcommerce-activate-theme

BigCommerce Activate a Theme

bigcommerce-download-theme

BigCommerce Download a Theme

Capability Spec

themes-theme-actions.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: BigCommerce Themes — Theme Actions
  description: 'BigCommerce Themes — Theme Actions. 2 operations. Lead operation: BigCommerce Activate a Theme. Self-contained
    Naftiko capability covering one Bigcommerce business surface.'
  tags:
  - Bigcommerce
  - Theme Actions
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    BIGCOMMERCE_API_KEY: BIGCOMMERCE_API_KEY
capability:
  consumes:
  - type: http
    namespace: themes-theme-actions
    baseUri: https://api.bigcommerce.com/stores/{store_hash}/v3
    description: BigCommerce Themes — Theme Actions business capability. Self-contained, no shared references.
    resources:
    - name: themes-actions-activate
      path: /themes/actions/activate
      operations:
      - name: activatestoretheme
        method: POST
        description: BigCommerce Activate a Theme
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: themes-uuid-actions-download
      path: /themes/{uuid}/actions/download
      operations:
      - name: downloadstoretheme
        method: POST
        description: BigCommerce Download a Theme
        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: themes-theme-actions-rest
    port: 8080
    description: REST adapter for BigCommerce Themes — Theme Actions. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/themes/actions/activate
      name: themes-actions-activate
      description: REST surface for themes-actions-activate.
      operations:
      - method: POST
        name: activatestoretheme
        description: BigCommerce Activate a Theme
        call: themes-theme-actions.activatestoretheme
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/themes/{uuid}/actions/download
      name: themes-uuid-actions-download
      description: REST surface for themes-uuid-actions-download.
      operations:
      - method: POST
        name: downloadstoretheme
        description: BigCommerce Download a Theme
        call: themes-theme-actions.downloadstoretheme
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: themes-theme-actions-mcp
    port: 9090
    transport: http
    description: MCP adapter for BigCommerce Themes — Theme Actions. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: bigcommerce-activate-theme
      description: BigCommerce Activate a Theme
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: themes-theme-actions.activatestoretheme
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: bigcommerce-download-theme
      description: BigCommerce Download a Theme
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: themes-theme-actions.downloadstoretheme
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.