BigCommerce · Capability

BigCommerce Wishlist — Wishlists Items

BigCommerce Wishlist — Wishlists Items. 2 operations. Lead operation: BigCommerce Add Wishlist Item. Self-contained Naftiko capability covering one Bigcommerce business surface.

Run with Naftiko BigcommerceWishlists Items

What You Can Do

POST
Addwishlistitem — BigCommerce Add Wishlist Item
/v1/wishlists/{wishlist-id}/items
DELETE
Deletewishlistitem — BigCommerce Delete Wishlist Item
/v1/wishlists/{wishlist-id}/items/{item-id}

MCP Tools

bigcommerce-add-wishlist-item

BigCommerce Add Wishlist Item

read-only
bigcommerce-delete-wishlist-item

BigCommerce Delete Wishlist Item

idempotent

Capability Spec

wishlist-wishlists-items.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: BigCommerce Wishlist — Wishlists Items
  description: 'BigCommerce Wishlist — Wishlists Items. 2 operations. Lead operation: BigCommerce Add Wishlist Item. Self-contained
    Naftiko capability covering one Bigcommerce business surface.'
  tags:
  - Bigcommerce
  - Wishlists Items
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    BIGCOMMERCE_API_KEY: BIGCOMMERCE_API_KEY
capability:
  consumes:
  - type: http
    namespace: wishlist-wishlists-items
    baseUri: https://api.bigcommerce.com/stores/{store_hash}/v3
    description: BigCommerce Wishlist — Wishlists Items business capability. Self-contained, no shared references.
    resources:
    - name: wishlists-wishlist_id-items
      path: /wishlists/{wishlist_id}/items
      operations:
      - name: addwishlistitem
        method: POST
        description: BigCommerce Add Wishlist Item
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: wishlists-wishlist_id-items-item_id
      path: /wishlists/{wishlist_id}/items/{item_id}
      operations:
      - name: deletewishlistitem
        method: DELETE
        description: BigCommerce Delete Wishlist Item
        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: wishlist-wishlists-items-rest
    port: 8080
    description: REST adapter for BigCommerce Wishlist — Wishlists Items. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/wishlists/{wishlist-id}/items
      name: wishlists-wishlist-id-items
      description: REST surface for wishlists-wishlist_id-items.
      operations:
      - method: POST
        name: addwishlistitem
        description: BigCommerce Add Wishlist Item
        call: wishlist-wishlists-items.addwishlistitem
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/wishlists/{wishlist-id}/items/{item-id}
      name: wishlists-wishlist-id-items-item-id
      description: REST surface for wishlists-wishlist_id-items-item_id.
      operations:
      - method: DELETE
        name: deletewishlistitem
        description: BigCommerce Delete Wishlist Item
        call: wishlist-wishlists-items.deletewishlistitem
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: wishlist-wishlists-items-mcp
    port: 9090
    transport: http
    description: MCP adapter for BigCommerce Wishlist — Wishlists Items. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: bigcommerce-add-wishlist-item
      description: BigCommerce Add Wishlist Item
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: wishlist-wishlists-items.addwishlistitem
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: bigcommerce-delete-wishlist-item
      description: BigCommerce Delete Wishlist Item
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: wishlist-wishlists-items.deletewishlistitem
      outputParameters:
      - type: object
        mapping: $.