VTEX · Capability

VTex Catalog API — SKU Service

VTex Catalog API — SKU Service. 4 operations. Lead operation: VTex Associate SKU service. Self-contained Naftiko capability covering one Vtex business surface.

Run with Naftiko VtexSKU Service

What You Can Do

POST
Post — VTex Associate SKU service
/v1/api/catalog/pvt/skuservice
GET
Get — VTex Get SKU service
/v1/api/catalog/pvt/skuservice/{skuserviceid}
PUT
Put — VTex Update SKU service
/v1/api/catalog/pvt/skuservice/{skuserviceid}
DELETE
Delete — VTex Dissociate SKU service
/v1/api/catalog/pvt/skuservice/{skuserviceid}

MCP Tools

vtex-associate-sku-service

VTex Associate SKU service

vtex-get-sku-service

VTex Get SKU service

read-only idempotent
vtex-update-sku-service

VTex Update SKU service

idempotent
vtex-dissociate-sku-service

VTex Dissociate SKU service

idempotent

Capability Spec

catalog-sku-service.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: VTex Catalog API — SKU Service
  description: 'VTex Catalog API — SKU Service. 4 operations. Lead operation: VTex Associate SKU service. Self-contained Naftiko
    capability covering one Vtex business surface.'
  tags:
  - Vtex
  - SKU Service
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    VTEX_API_KEY: VTEX_API_KEY
capability:
  consumes:
  - type: http
    namespace: catalog-sku-service
    baseUri: https://{accountName}.{environment}.com.br
    description: VTex Catalog API — SKU Service business capability. Self-contained, no shared references.
    resources:
    - name: api-catalog-pvt-skuservice
      path: /api/catalog/pvt/skuservice
      operations:
      - name: post
        method: POST
        description: VTex Associate SKU service
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: api-catalog-pvt-skuservice-skuServiceId
      path: /api/catalog/pvt/skuservice/{skuServiceId}
      operations:
      - name: get
        method: GET
        description: VTex Get SKU service
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: skuServiceId
          in: path
          type: integer
          description: SKU service unique identifier.
          required: true
      - name: put
        method: PUT
        description: VTex Update SKU service
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: skuServiceId
          in: path
          type: integer
          description: SKU service unique identifier.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: delete
        method: DELETE
        description: VTex Dissociate SKU service
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: skuServiceId
          in: path
          type: integer
          description: SKU service unique identifier.
          required: true
    authentication:
      type: apikey
      key: X-VTEX-API-AppKey
      value: '{{env.VTEX_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: catalog-sku-service-rest
    port: 8080
    description: REST adapter for VTex Catalog API — SKU Service. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/api/catalog/pvt/skuservice
      name: api-catalog-pvt-skuservice
      description: REST surface for api-catalog-pvt-skuservice.
      operations:
      - method: POST
        name: post
        description: VTex Associate SKU service
        call: catalog-sku-service.post
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/catalog/pvt/skuservice/{skuserviceid}
      name: api-catalog-pvt-skuservice-skuserviceid
      description: REST surface for api-catalog-pvt-skuservice-skuServiceId.
      operations:
      - method: GET
        name: get
        description: VTex Get SKU service
        call: catalog-sku-service.get
        with:
          skuServiceId: rest.skuServiceId
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: put
        description: VTex Update SKU service
        call: catalog-sku-service.put
        with:
          skuServiceId: rest.skuServiceId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: delete
        description: VTex Dissociate SKU service
        call: catalog-sku-service.delete
        with:
          skuServiceId: rest.skuServiceId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: catalog-sku-service-mcp
    port: 9090
    transport: http
    description: MCP adapter for VTex Catalog API — SKU Service. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: vtex-associate-sku-service
      description: VTex Associate SKU service
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: catalog-sku-service.post
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: vtex-get-sku-service
      description: VTex Get SKU service
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: catalog-sku-service.get
      with:
        skuServiceId: tools.skuServiceId
      outputParameters:
      - type: object
        mapping: $.
    - name: vtex-update-sku-service
      description: VTex Update SKU service
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: catalog-sku-service.put
      with:
        skuServiceId: tools.skuServiceId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: vtex-dissociate-sku-service
      description: VTex Dissociate SKU service
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: catalog-sku-service.delete
      with:
        skuServiceId: tools.skuServiceId
      outputParameters:
      - type: object
        mapping: $.