Oracle E-Business Suite · Capability

Oracle EBS Manufacturing API — Bills of Material

Oracle EBS Manufacturing API — Bills of Material. 3 operations. Lead operation: Retrieve Bills of Material. Self-contained Naftiko capability covering one Oracle E Business Suite business surface.

Run with Naftiko Oracle E Business SuiteBills of Material

What You Can Do

GET
Getbillsofmaterial — Retrieve Bills of Material
/v1/bom/billsofmaterial
GET
Getbillofmaterialbyid — Retrieve a Specific Bill of Material
/v1/bom/billsofmaterial/{billsequenceid}
GET
Getroutings — Retrieve Manufacturing Routings
/v1/bom/routings

MCP Tools

retrieve-bills-material

Retrieve Bills of Material

read-only idempotent
retrieve-specific-bill-material

Retrieve a Specific Bill of Material

read-only idempotent
retrieve-manufacturing-routings

Retrieve Manufacturing Routings

read-only idempotent

Capability Spec

manufacturing-bills-of-material.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Oracle EBS Manufacturing API — Bills of Material
  description: 'Oracle EBS Manufacturing API — Bills of Material. 3 operations. Lead operation: Retrieve Bills of Material.
    Self-contained Naftiko capability covering one Oracle E Business Suite business surface.'
  tags:
  - Oracle E Business Suite
  - Bills of Material
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ORACLE_E_BUSINESS_SUITE_API_KEY: ORACLE_E_BUSINESS_SUITE_API_KEY
capability:
  consumes:
  - type: http
    namespace: manufacturing-bills-of-material
    baseUri: https://{instance}.oracle.com/webservices/rest
    description: Oracle EBS Manufacturing API — Bills of Material business capability. Self-contained, no shared references.
    resources:
    - name: bom-billsOfMaterial
      path: /bom/billsOfMaterial
      operations:
      - name: getbillsofmaterial
        method: GET
        description: Retrieve Bills of Material
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: billSequenceId
          in: query
          type: integer
          description: Bill sequence identifier
        - name: assemblyItemId
          in: query
          type: integer
          description: Assembly item identifier
        - name: organizationId
          in: query
          type: integer
          description: Organization identifier
        - name: alternateDesignator
          in: query
          type: string
          description: Alternate BOM designator
    - name: bom-billsOfMaterial-billSequenceId
      path: /bom/billsOfMaterial/{billSequenceId}
      operations:
      - name: getbillofmaterialbyid
        method: GET
        description: Retrieve a Specific Bill of Material
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: billSequenceId
          in: path
          type: integer
          required: true
    - name: bom-routings
      path: /bom/routings
      operations:
      - name: getroutings
        method: GET
        description: Retrieve Manufacturing Routings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: routingSequenceId
          in: query
          type: integer
          description: Routing sequence identifier
        - name: assemblyItemId
          in: query
          type: integer
          description: Assembly item identifier
        - name: organizationId
          in: query
          type: integer
          description: Organization identifier
    authentication:
      type: apikey
      key: accessToken
      value: '{{env.ORACLE_E_BUSINESS_SUITE_API_KEY}}'
      placement: cookie
  exposes:
  - type: rest
    namespace: manufacturing-bills-of-material-rest
    port: 8080
    description: REST adapter for Oracle EBS Manufacturing API — Bills of Material. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/bom/billsofmaterial
      name: bom-billsofmaterial
      description: REST surface for bom-billsOfMaterial.
      operations:
      - method: GET
        name: getbillsofmaterial
        description: Retrieve Bills of Material
        call: manufacturing-bills-of-material.getbillsofmaterial
        with:
          billSequenceId: rest.billSequenceId
          assemblyItemId: rest.assemblyItemId
          organizationId: rest.organizationId
          alternateDesignator: rest.alternateDesignator
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/bom/billsofmaterial/{billsequenceid}
      name: bom-billsofmaterial-billsequenceid
      description: REST surface for bom-billsOfMaterial-billSequenceId.
      operations:
      - method: GET
        name: getbillofmaterialbyid
        description: Retrieve a Specific Bill of Material
        call: manufacturing-bills-of-material.getbillofmaterialbyid
        with:
          billSequenceId: rest.billSequenceId
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/bom/routings
      name: bom-routings
      description: REST surface for bom-routings.
      operations:
      - method: GET
        name: getroutings
        description: Retrieve Manufacturing Routings
        call: manufacturing-bills-of-material.getroutings
        with:
          routingSequenceId: rest.routingSequenceId
          assemblyItemId: rest.assemblyItemId
          organizationId: rest.organizationId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: manufacturing-bills-of-material-mcp
    port: 9090
    transport: http
    description: MCP adapter for Oracle EBS Manufacturing API — Bills of Material. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: retrieve-bills-material
      description: Retrieve Bills of Material
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: manufacturing-bills-of-material.getbillsofmaterial
      with:
        billSequenceId: tools.billSequenceId
        assemblyItemId: tools.assemblyItemId
        organizationId: tools.organizationId
        alternateDesignator: tools.alternateDesignator
      outputParameters:
      - type: object
        mapping: $.
    - name: retrieve-specific-bill-material
      description: Retrieve a Specific Bill of Material
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: manufacturing-bills-of-material.getbillofmaterialbyid
      with:
        billSequenceId: tools.billSequenceId
      outputParameters:
      - type: object
        mapping: $.
    - name: retrieve-manufacturing-routings
      description: Retrieve Manufacturing Routings
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: manufacturing-bills-of-material.getroutings
      with:
        routingSequenceId: tools.routingSequenceId
        assemblyItemId: tools.assemblyItemId
        organizationId: tools.organizationId
      outputParameters:
      - type: object
        mapping: $.