Webflow · Capability

Webflow Inventory API — Inventory

Webflow Inventory API — Inventory. 2 operations. Lead operation: Webflow List Inventory. Self-contained Naftiko capability covering one Webflow business surface.

Run with Naftiko WebflowInventory

What You Can Do

GET
Listinventory — Webflow List Inventory
/v1/collections/{sku-collection-id}/items/{sku-id}/inventory
PATCH
Updateinventory — Webflow Update Item Inventory
/v1/collections/{sku-collection-id}/items/{sku-id}/inventory

MCP Tools

webflow-list-inventory

Webflow List Inventory

read-only idempotent
webflow-update-item-inventory

Webflow Update Item Inventory

idempotent

Capability Spec

inventory-inventory.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Webflow Inventory API — Inventory
  description: 'Webflow Inventory API — Inventory. 2 operations. Lead operation: Webflow List Inventory. Self-contained Naftiko
    capability covering one Webflow business surface.'
  tags:
  - Webflow
  - Inventory
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    WEBFLOW_API_KEY: WEBFLOW_API_KEY
capability:
  consumes:
  - type: http
    namespace: inventory-inventory
    baseUri: https://api.webflow.com/v2
    description: Webflow Inventory API — Inventory business capability. Self-contained, no shared references.
    resources:
    - name: collections-sku_collection_id-items-sku_id-inventory
      path: /collections/{sku_collection_id}/items/{sku_id}/inventory
      operations:
      - name: listinventory
        method: GET
        description: Webflow List Inventory
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: sku_collection_id
          in: path
          type: string
          description: Unique identifier for a SKU collection. Use the List Collections API to find this ID.
          required: true
        - name: sku_id
          in: path
          type: string
          description: Unique identifier for a SKU
          required: true
      - name: updateinventory
        method: PATCH
        description: Webflow Update Item Inventory
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: sku_collection_id
          in: path
          type: string
          description: Unique identifier for a SKU collection. Use the List Collections API to find this ID.
          required: true
        - name: sku_id
          in: path
          type: string
          description: Unique identifier for a SKU
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.WEBFLOW_API_KEY}}'
  exposes:
  - type: rest
    namespace: inventory-inventory-rest
    port: 8080
    description: REST adapter for Webflow Inventory API — Inventory. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/collections/{sku-collection-id}/items/{sku-id}/inventory
      name: collections-sku-collection-id-items-sku-id-inventory
      description: REST surface for collections-sku_collection_id-items-sku_id-inventory.
      operations:
      - method: GET
        name: listinventory
        description: Webflow List Inventory
        call: inventory-inventory.listinventory
        with:
          sku_collection_id: rest.sku_collection_id
          sku_id: rest.sku_id
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updateinventory
        description: Webflow Update Item Inventory
        call: inventory-inventory.updateinventory
        with:
          sku_collection_id: rest.sku_collection_id
          sku_id: rest.sku_id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: inventory-inventory-mcp
    port: 9090
    transport: http
    description: MCP adapter for Webflow Inventory API — Inventory. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: webflow-list-inventory
      description: Webflow List Inventory
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: inventory-inventory.listinventory
      with:
        sku_collection_id: tools.sku_collection_id
        sku_id: tools.sku_id
      outputParameters:
      - type: object
        mapping: $.
    - name: webflow-update-item-inventory
      description: Webflow Update Item Inventory
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: inventory-inventory.updateinventory
      with:
        sku_collection_id: tools.sku_collection_id
        sku_id: tools.sku_id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.