Applied Industrial Technologies Product Catalog API — Products

Applied Industrial Technologies Product Catalog API — Products. 2 operations. Lead operation: Applied Industrial Technologies - List Products. Self-contained Naftiko capability covering one Applied Industrial Technologies business surface.

Run with Naftiko Applied Industrial TechnologiesProducts

What You Can Do

GET
Listproducts — Applied Industrial Technologies - List Products
/v1/products
GET
Getproduct — Applied Industrial Technologies - Get Product
/v1/products/{productid}

MCP Tools

applied-industrial-technologies-list-products

Applied Industrial Technologies - List Products

read-only idempotent
applied-industrial-technologies-get-product

Applied Industrial Technologies - Get Product

read-only idempotent

Capability Spec

applied-industrial-technologies-products.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Applied Industrial Technologies Product Catalog API — Products
  description: 'Applied Industrial Technologies Product Catalog API — Products. 2 operations. Lead operation: Applied Industrial
    Technologies - List Products. Self-contained Naftiko capability covering one Applied Industrial Technologies business
    surface.'
  tags:
  - Applied Industrial Technologies
  - Products
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    APPLIED_INDUSTRIAL_TECHNOLOGIES_API_KEY: APPLIED_INDUSTRIAL_TECHNOLOGIES_API_KEY
capability:
  consumes:
  - type: http
    namespace: applied-industrial-technologies-products
    baseUri: https://api.applied-industrial-technologies.com/v1
    description: Applied Industrial Technologies Product Catalog API — Products business capability. Self-contained, no shared
      references.
    resources:
    - name: products
      path: /products
      operations:
      - name: listproducts
        method: GET
        description: Applied Industrial Technologies - List Products
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: category
          in: query
          type: string
          description: Filter by product category (bearings, power-transmission, fluid-power)
        - name: manufacturer
          in: query
          type: string
          description: Filter by manufacturer name
        - name: inStock
          in: query
          type: boolean
          description: Filter to only in-stock products
        - name: page
          in: query
          type: integer
          description: Page number for pagination
        - name: limit
          in: query
          type: integer
          description: Number of results per page
    - name: products-productId
      path: /products/{productId}
      operations:
      - name: getproduct
        method: GET
        description: Applied Industrial Technologies - Get Product
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: productId
          in: path
          type: string
          description: Unique product identifier
          required: true
    authentication:
      type: bearer
      token: '{{env.APPLIED_INDUSTRIAL_TECHNOLOGIES_API_KEY}}'
  exposes:
  - type: rest
    namespace: applied-industrial-technologies-products-rest
    port: 8080
    description: REST adapter for Applied Industrial Technologies Product Catalog API — Products. One Spectral-compliant resource
      per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/products
      name: products
      description: REST surface for products.
      operations:
      - method: GET
        name: listproducts
        description: Applied Industrial Technologies - List Products
        call: applied-industrial-technologies-products.listproducts
        with:
          category: rest.category
          manufacturer: rest.manufacturer
          inStock: rest.inStock
          page: rest.page
          limit: rest.limit
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/products/{productid}
      name: products-productid
      description: REST surface for products-productId.
      operations:
      - method: GET
        name: getproduct
        description: Applied Industrial Technologies - Get Product
        call: applied-industrial-technologies-products.getproduct
        with:
          productId: rest.productId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: applied-industrial-technologies-products-mcp
    port: 9090
    transport: http
    description: MCP adapter for Applied Industrial Technologies Product Catalog API — Products. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: applied-industrial-technologies-list-products
      description: Applied Industrial Technologies - List Products
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: applied-industrial-technologies-products.listproducts
      with:
        category: tools.category
        manufacturer: tools.manufacturer
        inStock: tools.inStock
        page: tools.page
        limit: tools.limit
      outputParameters:
      - type: object
        mapping: $.
    - name: applied-industrial-technologies-get-product
      description: Applied Industrial Technologies - Get Product
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: applied-industrial-technologies-products.getproduct
      with:
        productId: tools.productId
      outputParameters:
      - type: object
        mapping: $.