United States Steel · Capability

U.S. Steel Supply Chain Management

Workflow capability for managing the complete U.S. Steel supply chain relationship. Combines order management, inventory tracking, shipment visibility, and quality documentation from the SteelTrack platform. Designed for procurement managers, supply chain analysts, and automotive supplier quality engineers who need integrated visibility into steel orders from placement through delivery and quality certification.

Run with Naftiko U.S. SteelSupply ChainProcurementQualityManufacturing

What You Can Do

GET
List orders — List orders.
/v1/orders
GET
Get order — Get order by ID.
/v1/orders/{orderId}
GET
List inventory — List available inventory.
/v1/inventory
GET
List shipments — List shipments.
/v1/shipments
GET
List test reports — List test reports.
/v1/test-reports

MCP Tools

list-steel-orders

List U.S. Steel orders with filtering by status, facility, and date range.

read-only
get-steel-order

Get detailed information for a specific U.S. Steel order including production status and delivery timeline.

read-only
list-steel-inventory

List available U.S. Steel customer inventory by product type, grade, and facility.

read-only
list-steel-shipments

List U.S. Steel shipment history for orders and purchase orders with coil-level detail.

read-only
list-test-reports

List certified physical, mechanical, and chemical test reports for steel products by coil or order.

read-only

APIs Used

ussteel-steeltrack

Capability Spec

supply-chain-management.yaml Raw ↑
naftiko: "1.0.0-alpha1"

info:
  label: "U.S. Steel Supply Chain Management"
  description: >-
    Workflow capability for managing the complete U.S. Steel supply chain relationship.
    Combines order management, inventory tracking, shipment visibility, and quality
    documentation from the SteelTrack platform. Designed for procurement managers,
    supply chain analysts, and automotive supplier quality engineers who need integrated
    visibility into steel orders from placement through delivery and quality certification.
  tags:
    - U.S. Steel
    - Supply Chain
    - Procurement
    - Quality
    - Manufacturing
  created: "2026-05-03"
  modified: "2026-05-03"

binds:
  - namespace: env
    keys:
      USSTEEL_BEARER_TOKEN: USSTEEL_BEARER_TOKEN

capability:
  consumes:
    - import: ussteel-steeltrack
      location: ./shared/steeltrack.yaml

  exposes:
    - type: rest
      port: 8080
      namespace: ussteel-supply-chain-api
      description: "Unified REST API for U.S. Steel supply chain management."
      resources:
        - path: /v1/orders
          name: orders
          description: "Steel order management and status tracking."
          operations:
            - method: GET
              name: list-orders
              description: "List orders."
              call: "ussteel-steeltrack.list-orders"
              outputParameters:
                - type: object
                  mapping: "$."
        - path: /v1/orders/{orderId}
          name: order-detail
          description: "Get order details."
          operations:
            - method: GET
              name: get-order
              description: "Get order by ID."
              call: "ussteel-steeltrack.get-order"
              with:
                orderId: "rest.orderId"
              outputParameters:
                - type: object
                  mapping: "$."
        - path: /v1/inventory
          name: inventory
          description: "Available inventory tracking."
          operations:
            - method: GET
              name: list-inventory
              description: "List available inventory."
              call: "ussteel-steeltrack.list-inventory"
              outputParameters:
                - type: object
                  mapping: "$."
        - path: /v1/shipments
          name: shipments
          description: "Shipment history and tracking."
          operations:
            - method: GET
              name: list-shipments
              description: "List shipments."
              call: "ussteel-steeltrack.list-shipments"
              outputParameters:
                - type: object
                  mapping: "$."
        - path: /v1/test-reports
          name: test-reports
          description: "Quality test reports."
          operations:
            - method: GET
              name: list-test-reports
              description: "List test reports."
              call: "ussteel-steeltrack.list-test-reports"
              outputParameters:
                - type: object
                  mapping: "$."

    - type: mcp
      port: 9090
      namespace: ussteel-supply-chain-mcp
      transport: http
      description: "MCP server for AI-assisted U.S. Steel supply chain management."
      tools:
        - name: list-steel-orders
          description: "List U.S. Steel orders with filtering by status, facility, and date range."
          hints:
            readOnly: true
            openWorld: true
          call: "ussteel-steeltrack.list-orders"
          outputParameters:
            - type: object
              mapping: "$."
        - name: get-steel-order
          description: "Get detailed information for a specific U.S. Steel order including production status and delivery timeline."
          hints:
            readOnly: true
            openWorld: true
          call: "ussteel-steeltrack.get-order"
          with:
            orderId: "tools.orderId"
          outputParameters:
            - type: object
              mapping: "$."
        - name: list-steel-inventory
          description: "List available U.S. Steel customer inventory by product type, grade, and facility."
          hints:
            readOnly: true
            openWorld: true
          call: "ussteel-steeltrack.list-inventory"
          outputParameters:
            - type: object
              mapping: "$."
        - name: list-steel-shipments
          description: "List U.S. Steel shipment history for orders and purchase orders with coil-level detail."
          hints:
            readOnly: true
            openWorld: true
          call: "ussteel-steeltrack.list-shipments"
          outputParameters:
            - type: object
              mapping: "$."
        - name: list-test-reports
          description: "List certified physical, mechanical, and chemical test reports for steel products by coil or order."
          hints:
            readOnly: true
            openWorld: true
          call: "ussteel-steeltrack.list-test-reports"
          outputParameters:
            - type: object
              mapping: "$."