manhattan-associates · Capability

Manhattan Active Supply Chain (WMS) API — Outbound

Manhattan Active Supply Chain (WMS) API — Outbound. 3 operations. Lead operation: List outbound orders. Self-contained Naftiko capability covering one Manhattan Associates business surface.

Run with Naftiko Manhattan AssociatesOutbound

What You Can Do

GET
Listoutboundorders — List outbound orders
/v1/outbound/orders
POST
Createoutboundorder — Create an outbound order
/v1/outbound/orders
POST
Shipoutboundorder — Confirm shipment of an outbound order
/v1/outbound/orders/{orderid}/ship

MCP Tools

list-outbound-orders

List outbound orders

read-only idempotent
create-outbound-order

Create an outbound order

confirm-shipment-outbound-order

Confirm shipment of an outbound order

Capability Spec

wms-outbound.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Manhattan Active Supply Chain (WMS) API — Outbound
  description: 'Manhattan Active Supply Chain (WMS) API — Outbound. 3 operations. Lead operation: List outbound orders. Self-contained
    Naftiko capability covering one Manhattan Associates business surface.'
  tags:
  - Manhattan Associates
  - Outbound
  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-outbound
    baseUri: https://api.developer.manh.com/wms/v1
    description: Manhattan Active Supply Chain (WMS) API — Outbound business capability. Self-contained, no shared references.
    resources:
    - name: outbound-orders
      path: /outbound/orders
      operations:
      - name: listoutboundorders
        method: GET
        description: List outbound orders
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: status
          in: query
          type: string
        - name: waveId
          in: query
          type: string
        - name: facilityId
          in: query
          type: string
        - name: limit
          in: query
          type: integer
      - name: createoutboundorder
        method: POST
        description: Create an outbound order
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: outbound-orders-orderId-ship
      path: /outbound/orders/{orderId}/ship
      operations:
      - name: shipoutboundorder
        method: POST
        description: Confirm shipment of an outbound order
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: orderId
          in: path
          type: string
          required: true
        - 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-outbound-rest
    port: 8080
    description: REST adapter for Manhattan Active Supply Chain (WMS) API — Outbound. One Spectral-compliant resource per
      consumed operation, prefixed with /v1.
    resources:
    - path: /v1/outbound/orders
      name: outbound-orders
      description: REST surface for outbound-orders.
      operations:
      - method: GET
        name: listoutboundorders
        description: List outbound orders
        call: wms-outbound.listoutboundorders
        with:
          status: rest.status
          waveId: rest.waveId
          facilityId: rest.facilityId
          limit: rest.limit
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createoutboundorder
        description: Create an outbound order
        call: wms-outbound.createoutboundorder
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/outbound/orders/{orderid}/ship
      name: outbound-orders-orderid-ship
      description: REST surface for outbound-orders-orderId-ship.
      operations:
      - method: POST
        name: shipoutboundorder
        description: Confirm shipment of an outbound order
        call: wms-outbound.shipoutboundorder
        with:
          orderId: rest.orderId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: wms-outbound-mcp
    port: 9090
    transport: http
    description: MCP adapter for Manhattan Active Supply Chain (WMS) API — Outbound. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: list-outbound-orders
      description: List outbound orders
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: wms-outbound.listoutboundorders
      with:
        status: tools.status
        waveId: tools.waveId
        facilityId: tools.facilityId
        limit: tools.limit
      outputParameters:
      - type: object
        mapping: $.
    - name: create-outbound-order
      description: Create an outbound order
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: wms-outbound.createoutboundorder
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: confirm-shipment-outbound-order
      description: Confirm shipment of an outbound order
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: wms-outbound.shipoutboundorder
      with:
        orderId: tools.orderId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.