Blissfully · Capability

Vendr Catalog API — Products

Vendr Catalog API — Products. 2 operations. Lead operation: Vendr List Software Products. Self-contained Naftiko capability covering one Blissfully business surface.

Run with Naftiko BlissfullyProducts

What You Can Do

GET
Listproducts — Vendr List Software Products
/v1/products
GET
Getproduct — Vendr Get Software Product
/v1/products/{product-id}

MCP Tools

vendr-list-software-products

Vendr List Software Products

read-only idempotent
vendr-get-software-product

Vendr Get Software Product

read-only idempotent

Capability Spec

vendr-catalog-products.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Vendr Catalog API — Products
  description: 'Vendr Catalog API — Products. 2 operations. Lead operation: Vendr List Software Products. Self-contained Naftiko
    capability covering one Blissfully business surface.'
  tags:
  - Blissfully
  - Products
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    BLISSFULLY_API_KEY: BLISSFULLY_API_KEY
capability:
  consumes:
  - type: http
    namespace: vendr-catalog-products
    baseUri: https://api.vendr.com/v1
    description: Vendr Catalog API — Products business capability. Self-contained, no shared references.
    resources:
    - name: products
      path: /products
      operations:
      - name: listproducts
        method: GET
        description: Vendr List Software Products
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: category
          in: query
          type: string
          description: Filter by product category (e.g., CRM, Security, HR)
        - name: vendor_id
          in: query
          type: string
          description: Filter products by vendor identifier
        - name: limit
          in: query
          type: integer
          description: Maximum number of results to return
        - name: offset
          in: query
          type: integer
          description: Number of results to skip for pagination
    - name: products-product_id
      path: /products/{product_id}
      operations:
      - name: getproduct
        method: GET
        description: Vendr Get Software Product
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: product_id
          in: path
          type: string
          description: Unique product identifier
          required: true
    authentication:
      type: apikey
      key: X-API-Key
      value: '{{env.BLISSFULLY_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: vendr-catalog-products-rest
    port: 8080
    description: REST adapter for Vendr 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: Vendr List Software Products
        call: vendr-catalog-products.listproducts
        with:
          category: rest.category
          vendor_id: rest.vendor_id
          limit: rest.limit
          offset: rest.offset
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/products/{product-id}
      name: products-product-id
      description: REST surface for products-product_id.
      operations:
      - method: GET
        name: getproduct
        description: Vendr Get Software Product
        call: vendr-catalog-products.getproduct
        with:
          product_id: rest.product_id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: vendr-catalog-products-mcp
    port: 9090
    transport: http
    description: MCP adapter for Vendr Catalog API — Products. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: vendr-list-software-products
      description: Vendr List Software Products
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: vendr-catalog-products.listproducts
      with:
        category: tools.category
        vendor_id: tools.vendor_id
        limit: tools.limit
        offset: tools.offset
      outputParameters:
      - type: object
        mapping: $.
    - name: vendr-get-software-product
      description: Vendr Get Software Product
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: vendr-catalog-products.getproduct
      with:
        product_id: tools.product_id
      outputParameters:
      - type: object
        mapping: $.