manhattan-associates · Capability

Manhattan Active Supply Chain (WMS) API — Inventory

Manhattan Active Supply Chain (WMS) API — Inventory. 2 operations. Lead operation: Query warehouse inventory. Self-contained Naftiko capability covering one Manhattan Associates business surface.

Run with Naftiko Manhattan AssociatesInventory

What You Can Do

GET
Getwarehouseinventory — Query warehouse inventory
/v1/inventory
POST
Createinventorytransfer — Create an inventory transfer
/v1/transfers

MCP Tools

query-warehouse-inventory

Query warehouse inventory

read-only idempotent
create-inventory-transfer

Create an inventory transfer

Capability Spec

wms-inventory.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Manhattan Active Supply Chain (WMS) API — Inventory
  description: 'Manhattan Active Supply Chain (WMS) API — Inventory. 2 operations. Lead operation: Query warehouse inventory.
    Self-contained Naftiko capability covering one Manhattan Associates business surface.'
  tags:
  - Manhattan Associates
  - Inventory
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    MANHATTAN_ASSOCIATES_API_KEY: MANHATTAN_ASSOCIATES_API_KEY
capability:
  consumes:
  - type: http
    namespace: wms-inventory
    baseUri: https://api.developer.manh.com/wms/v1
    description: Manhattan Active Supply Chain (WMS) API — Inventory business capability. Self-contained, no shared references.
    resources:
    - name: inventory
      path: /inventory
      operations:
      - name: getwarehouseinventory
        method: GET
        description: Query warehouse inventory
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: facilityId
          in: query
          type: string
        - name: itemId
          in: query
          type: string
        - name: locationId
          in: query
          type: string
        - name: lotNumber
          in: query
          type: string
        - name: limit
          in: query
          type: integer
    - name: transfers
      path: /transfers
      operations:
      - name: createinventorytransfer
        method: POST
        description: Create an inventory transfer
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.MANHATTAN_ASSOCIATES_API_KEY}}'
  exposes:
  - type: rest
    namespace: wms-inventory-rest
    port: 8080
    description: REST adapter for Manhattan Active Supply Chain (WMS) API — Inventory. One Spectral-compliant resource per
      consumed operation, prefixed with /v1.
    resources:
    - path: /v1/inventory
      name: inventory
      description: REST surface for inventory.
      operations:
      - method: GET
        name: getwarehouseinventory
        description: Query warehouse inventory
        call: wms-inventory.getwarehouseinventory
        with:
          facilityId: rest.facilityId
          itemId: rest.itemId
          locationId: rest.locationId
          lotNumber: rest.lotNumber
          limit: rest.limit
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/transfers
      name: transfers
      description: REST surface for transfers.
      operations:
      - method: POST
        name: createinventorytransfer
        description: Create an inventory transfer
        call: wms-inventory.createinventorytransfer
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: wms-inventory-mcp
    port: 9090
    transport: http
    description: MCP adapter for Manhattan Active Supply Chain (WMS) API — Inventory. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: query-warehouse-inventory
      description: Query warehouse inventory
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: wms-inventory.getwarehouseinventory
      with:
        facilityId: tools.facilityId
        itemId: tools.itemId
        locationId: tools.locationId
        lotNumber: tools.lotNumber
        limit: tools.limit
      outputParameters:
      - type: object
        mapping: $.
    - name: create-inventory-transfer
      description: Create an inventory transfer
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: wms-inventory.createinventorytransfer
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.