BigCommerce · Capability

BigCommerce Settings V3 — Store Profile

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

Run with Naftiko BigcommerceStore Profile

What You Can Do

GET
Getsettingsstoreprofile — BigCommerce Get Store Profile Settings
/v1/settings/store/profile
PUT
Updatesettingsstoreprofile — BigCommerce Update Store Profile Settings
/v1/settings/store/profile

MCP Tools

bigcommerce-get-store-profile-settings

BigCommerce Get Store Profile Settings

read-only idempotent
bigcommerce-update-store-profile-settings

BigCommerce Update Store Profile Settings

idempotent

Capability Spec

settings-store-profile.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: BigCommerce Settings V3 — Store Profile
  description: 'BigCommerce Settings V3 — Store Profile. 2 operations. Lead operation: BigCommerce Get Store Profile Settings.
    Self-contained Naftiko capability covering one Bigcommerce business surface.'
  tags:
  - Bigcommerce
  - Store Profile
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    BIGCOMMERCE_API_KEY: BIGCOMMERCE_API_KEY
capability:
  consumes:
  - type: http
    namespace: settings-store-profile
    baseUri: https://api.bigcommerce.com/stores/{store_hash}/v3
    description: BigCommerce Settings V3 — Store Profile business capability. Self-contained, no shared references.
    resources:
    - name: settings-store-profile
      path: /settings/store/profile
      operations:
      - name: getsettingsstoreprofile
        method: GET
        description: BigCommerce Get Store Profile Settings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updatesettingsstoreprofile
        method: PUT
        description: BigCommerce Update Store Profile 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-store-profile-rest
    port: 8080
    description: REST adapter for BigCommerce Settings V3 — Store Profile. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/settings/store/profile
      name: settings-store-profile
      description: REST surface for settings-store-profile.
      operations:
      - method: GET
        name: getsettingsstoreprofile
        description: BigCommerce Get Store Profile Settings
        call: settings-store-profile.getsettingsstoreprofile
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatesettingsstoreprofile
        description: BigCommerce Update Store Profile Settings
        call: settings-store-profile.updatesettingsstoreprofile
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: settings-store-profile-mcp
    port: 9090
    transport: http
    description: MCP adapter for BigCommerce Settings V3 — Store Profile. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: bigcommerce-get-store-profile-settings
      description: BigCommerce Get Store Profile Settings
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: settings-store-profile.getsettingsstoreprofile
      outputParameters:
      - type: object
        mapping: $.
    - name: bigcommerce-update-store-profile-settings
      description: BigCommerce Update Store Profile Settings
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: settings-store-profile.updatesettingsstoreprofile
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.