BigCommerce · Capability

BigCommerce Currencies — Currencies (Bulk)

BigCommerce Currencies — Currencies (Bulk). 3 operations. Lead operation: BigCommerce Get All Currencies. Self-contained Naftiko capability covering one Bigcommerce business surface.

Run with Naftiko BigcommerceCurrencies (Bulk)

What You Can Do

GET
Getcurrencies — BigCommerce Get All Currencies
/v1/currencies
POST
Createcurrency — BigCommerce Create a Currency
/v1/currencies
DELETE
Deletecurrencies — BigCommerce Delete All Currencies
/v1/currencies

MCP Tools

bigcommerce-get-all-currencies

BigCommerce Get All Currencies

read-only idempotent
bigcommerce-create-currency

BigCommerce Create a Currency

bigcommerce-delete-all-currencies

BigCommerce Delete All Currencies

idempotent

Capability Spec

currencies-currencies-bulk.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: BigCommerce Currencies — Currencies (Bulk)
  description: 'BigCommerce Currencies — Currencies (Bulk). 3 operations. Lead operation: BigCommerce Get All Currencies.
    Self-contained Naftiko capability covering one Bigcommerce business surface.'
  tags:
  - Bigcommerce
  - Currencies (Bulk)
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    BIGCOMMERCE_API_KEY: BIGCOMMERCE_API_KEY
capability:
  consumes:
  - type: http
    namespace: currencies-currencies-bulk
    baseUri: https://api.bigcommerce.com/stores/{store_hash}/v2
    description: BigCommerce Currencies — Currencies (Bulk) business capability. Self-contained, no shared references.
    resources:
    - name: currencies
      path: /currencies
      operations:
      - name: getcurrencies
        method: GET
        description: BigCommerce Get All Currencies
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: page
          in: query
          type: integer
          description: Specifies the page number in a limited (paginated) list of currencies.
        - name: limit
          in: query
          type: integer
          description: Controls the number of items per page in a limited (paginated) list of currencies.
      - name: createcurrency
        method: POST
        description: BigCommerce Create a Currency
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: deletecurrencies
        method: DELETE
        description: BigCommerce Delete All Currencies
        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: currencies-currencies-bulk-rest
    port: 8080
    description: REST adapter for BigCommerce Currencies — Currencies (Bulk). One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/currencies
      name: currencies
      description: REST surface for currencies.
      operations:
      - method: GET
        name: getcurrencies
        description: BigCommerce Get All Currencies
        call: currencies-currencies-bulk.getcurrencies
        with:
          page: rest.page
          limit: rest.limit
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createcurrency
        description: BigCommerce Create a Currency
        call: currencies-currencies-bulk.createcurrency
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletecurrencies
        description: BigCommerce Delete All Currencies
        call: currencies-currencies-bulk.deletecurrencies
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: currencies-currencies-bulk-mcp
    port: 9090
    transport: http
    description: MCP adapter for BigCommerce Currencies — Currencies (Bulk). One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: bigcommerce-get-all-currencies
      description: BigCommerce Get All Currencies
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: currencies-currencies-bulk.getcurrencies
      with:
        page: tools.page
        limit: tools.limit
      outputParameters:
      - type: object
        mapping: $.
    - name: bigcommerce-create-currency
      description: BigCommerce Create a Currency
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: currencies-currencies-bulk.createcurrency
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: bigcommerce-delete-all-currencies
      description: BigCommerce Delete All Currencies
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: currencies-currencies-bulk.deletecurrencies
      outputParameters:
      - type: object
        mapping: $.