AptarGroup · Capability

AptarGroup Product Catalog API — Products

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

Run with Naftiko AptargroupProducts

What You Can Do

GET
Listproducts — AptarGroup - List Products
/v1/products
GET
Getproduct — AptarGroup - Get Product
/v1/products/{productid}

MCP Tools

aptargroup-list-products

AptarGroup - List Products

read-only idempotent
aptargroup-get-product

AptarGroup - Get Product

read-only idempotent

Capability Spec

aptargroup-products.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: AptarGroup Product Catalog API — Products
  description: 'AptarGroup Product Catalog API — Products. 2 operations. Lead operation: AptarGroup - List Products. Self-contained
    Naftiko capability covering one Aptargroup business surface.'
  tags:
  - Aptargroup
  - Products
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    APTARGROUP_API_KEY: APTARGROUP_API_KEY
capability:
  consumes:
  - type: http
    namespace: aptargroup-products
    baseUri: https://api.aptargroup.com/v1
    description: AptarGroup Product Catalog API — Products business capability. Self-contained, no shared references.
    resources:
    - name: products
      path: /products
      operations:
      - name: listproducts
        method: GET
        description: AptarGroup - List Products
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: category
          in: query
          type: string
          description: Filter by product category (dispensing, sealing, active-packaging)
        - name: market
          in: query
          type: string
          description: Filter by target market (beauty, pharma, food, home-care)
        - name: sustainable
          in: query
          type: boolean
          description: Filter to only sustainable products
    - name: products-productId
      path: /products/{productId}
      operations:
      - name: getproduct
        method: GET
        description: AptarGroup - 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.APTARGROUP_API_KEY}}'
  exposes:
  - type: rest
    namespace: aptargroup-products-rest
    port: 8080
    description: REST adapter for AptarGroup 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: AptarGroup - List Products
        call: aptargroup-products.listproducts
        with:
          category: rest.category
          market: rest.market
          sustainable: rest.sustainable
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/products/{productid}
      name: products-productid
      description: REST surface for products-productId.
      operations:
      - method: GET
        name: getproduct
        description: AptarGroup - Get Product
        call: aptargroup-products.getproduct
        with:
          productId: rest.productId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: aptargroup-products-mcp
    port: 9090
    transport: http
    description: MCP adapter for AptarGroup Product Catalog API — Products. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: aptargroup-list-products
      description: AptarGroup - List Products
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: aptargroup-products.listproducts
      with:
        category: tools.category
        market: tools.market
        sustainable: tools.sustainable
      outputParameters:
      - type: object
        mapping: $.
    - name: aptargroup-get-product
      description: AptarGroup - Get Product
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: aptargroup-products.getproduct
      with:
        productId: tools.productId
      outputParameters:
      - type: object
        mapping: $.