BigCommerce · Capability

BigCommerce Webhooks v3 — Webhooks Admin

BigCommerce Webhooks v3 — Webhooks Admin. 2 operations. Lead operation: BigCommerce Get Admin Info. Self-contained Naftiko capability covering one Bigcommerce business surface.

Run with Naftiko BigcommerceWebhooks Admin

What You Can Do

GET
Gethooksadmin — BigCommerce Get Admin Info
/v1/hooks/admin
PUT
Updatehooksadmin — BigCommerce Upsert Email Notifications
/v1/hooks/admin

MCP Tools

bigcommerce-get-admin-info

BigCommerce Get Admin Info

read-only idempotent
bigcommerce-upsert-email-notifications

BigCommerce Upsert Email Notifications

idempotent

Capability Spec

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