blue-yonder · Capability

Blue Yonder Warehouse Management API — Orders

Blue Yonder Warehouse Management API — Orders. 2 operations. Lead operation: List outbound orders. Self-contained Naftiko capability covering one Blue Yonder business surface.

Run with Naftiko Blue YonderOrders

What You Can Do

GET
Listorders — List outbound orders
/v1/wms/v1/orders
POST
Createorder — Create outbound order
/v1/wms/v1/orders

MCP Tools

list-outbound-orders

List outbound orders

read-only idempotent
create-outbound-order

Create outbound order

Capability Spec

warehouse-management-orders.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Blue Yonder Warehouse Management API — Orders
  description: 'Blue Yonder Warehouse Management API — Orders. 2 operations. Lead operation: List outbound orders. Self-contained
    Naftiko capability covering one Blue Yonder business surface.'
  tags:
  - Blue Yonder
  - Orders
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    BLUE_YONDER_API_KEY: BLUE_YONDER_API_KEY
capability:
  consumes:
  - type: http
    namespace: warehouse-management-orders
    baseUri: https://api.blueyonder.example.com
    description: Blue Yonder Warehouse Management API — Orders business capability. Self-contained, no shared references.
    resources:
    - name: wms-v1-orders
      path: /wms/v1/orders
      operations:
      - name: listorders
        method: GET
        description: List outbound orders
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: status
          in: query
          type: string
        - name: priority
          in: query
          type: string
      - name: createorder
        method: POST
        description: Create outbound order
        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.BLUE_YONDER_API_KEY}}'
  exposes:
  - type: rest
    namespace: warehouse-management-orders-rest
    port: 8080
    description: REST adapter for Blue Yonder Warehouse Management API — Orders. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/wms/v1/orders
      name: wms-v1-orders
      description: REST surface for wms-v1-orders.
      operations:
      - method: GET
        name: listorders
        description: List outbound orders
        call: warehouse-management-orders.listorders
        with:
          status: rest.status
          priority: rest.priority
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createorder
        description: Create outbound order
        call: warehouse-management-orders.createorder
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: warehouse-management-orders-mcp
    port: 9090
    transport: http
    description: MCP adapter for Blue Yonder Warehouse Management API — Orders. 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: warehouse-management-orders.listorders
      with:
        status: tools.status
        priority: tools.priority
      outputParameters:
      - type: object
        mapping: $.
    - name: create-outbound-order
      description: Create outbound order
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: warehouse-management-orders.createorder
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.