BigCommerce · Capability

BigCommerce Currencies — Currencies (Single)

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

Run with Naftiko BigcommerceCurrencies (Single)

What You Can Do

GET
Getcurrency — BigCommerce Get a Currency
/v1/currencies/{id}
PUT
Updatecurrency — BigCommerce Update a Currency
/v1/currencies/{id}
DELETE
Deletecurrency — BigCommerce Delete a Currency
/v1/currencies/{id}

MCP Tools

bigcommerce-get-currency

BigCommerce Get a Currency

read-only idempotent
bigcommerce-update-currency

BigCommerce Update a Currency

idempotent
bigcommerce-delete-currency

BigCommerce Delete a Currency

idempotent

Capability Spec

currencies-currencies-single.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: BigCommerce Currencies — Currencies (Single)
  description: 'BigCommerce Currencies — Currencies (Single). 3 operations. Lead operation: BigCommerce Get a Currency. Self-contained
    Naftiko capability covering one Bigcommerce business surface.'
  tags:
  - Bigcommerce
  - Currencies (Single)
  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-single
    baseUri: https://api.bigcommerce.com/stores/{store_hash}/v2
    description: BigCommerce Currencies — Currencies (Single) business capability. Self-contained, no shared references.
    resources:
    - name: currencies-id
      path: /currencies/{id}
      operations:
      - name: getcurrency
        method: GET
        description: BigCommerce Get a Currency
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updatecurrency
        method: PUT
        description: BigCommerce Update a Currency
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: deletecurrency
        method: DELETE
        description: BigCommerce Delete a Currency
        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-single-rest
    port: 8080
    description: REST adapter for BigCommerce Currencies — Currencies (Single). One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/currencies/{id}
      name: currencies-id
      description: REST surface for currencies-id.
      operations:
      - method: GET
        name: getcurrency
        description: BigCommerce Get a Currency
        call: currencies-currencies-single.getcurrency
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatecurrency
        description: BigCommerce Update a Currency
        call: currencies-currencies-single.updatecurrency
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletecurrency
        description: BigCommerce Delete a Currency
        call: currencies-currencies-single.deletecurrency
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: currencies-currencies-single-mcp
    port: 9090
    transport: http
    description: MCP adapter for BigCommerce Currencies — Currencies (Single). One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: bigcommerce-get-currency
      description: BigCommerce Get a Currency
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: currencies-currencies-single.getcurrency
      outputParameters:
      - type: object
        mapping: $.
    - name: bigcommerce-update-currency
      description: BigCommerce Update a Currency
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: currencies-currencies-single.updatecurrency
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: bigcommerce-delete-currency
      description: BigCommerce Delete a Currency
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: currencies-currencies-single.deletecurrency
      outputParameters:
      - type: object
        mapping: $.