VTEX · Capability

VTex Catalog API — SKU Specification

VTex Catalog API — SKU Specification. 6 operations. Lead operation: VTex Get SKU specifications. Self-contained Naftiko capability covering one Vtex business surface.

Run with Naftiko VtexSKU Specification

What You Can Do

GET
Get — VTex Get SKU specifications
/v1/api/catalog/pvt/stockkeepingunit/{skuid}/specification
POST
Post — VTex Associate SKU specification
/v1/api/catalog/pvt/stockkeepingunit/{skuid}/specification
PUT
Put — VTex Update SKU specification
/v1/api/catalog/pvt/stockkeepingunit/{skuid}/specification
DELETE
Delete — VTex Delete all SKU specifications
/v1/api/catalog/pvt/stockkeepingunit/{skuid}/specification
DELETE
Delete — VTex Delete SKU specification
/v1/api/catalog/pvt/stockkeepingunit/{skuid}/specification/{specificationid}
PUT
Put — VTex Associate SKU specification using specification name and group name
/v1/api/catalog/pvt/stockkeepingunit/{skuid}/specificationvalue

MCP Tools

vtex-get-sku-specifications

VTex Get SKU specifications

read-only idempotent
vtex-associate-sku-specification

VTex Associate SKU specification

vtex-update-sku-specification

VTex Update SKU specification

idempotent
vtex-delete-all-sku-specifications

VTex Delete all SKU specifications

idempotent
vtex-delete-sku-specification

VTex Delete SKU specification

idempotent
vtex-associate-sku-specification-using

VTex Associate SKU specification using specification name and group name

idempotent

Capability Spec

catalog-sku-specification.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: VTex Catalog API — SKU Specification
  description: 'VTex Catalog API — SKU Specification. 6 operations. Lead operation: VTex Get SKU specifications. Self-contained
    Naftiko capability covering one Vtex business surface.'
  tags:
  - Vtex
  - SKU Specification
  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-specification
    baseUri: https://{accountName}.{environment}.com.br
    description: VTex Catalog API — SKU Specification business capability. Self-contained, no shared references.
    resources:
    - name: api-catalog-pvt-stockkeepingunit-skuId-specification
      path: /api/catalog/pvt/stockkeepingunit/{skuId}/specification
      operations:
      - name: get
        method: GET
        description: VTex Get SKU specifications
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: skuId
          in: path
          type: integer
          description: SKU's unique numerical identifier.
          required: true
      - name: post
        method: POST
        description: VTex Associate SKU specification
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: skuId
          in: path
          type: integer
          description: SKU's unique numerical identifier.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: put
        method: PUT
        description: VTex Update SKU specification
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: skuId
          in: path
          type: integer
          description: SKU's unique numerical identifier.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: delete
        method: DELETE
        description: VTex Delete all SKU specifications
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: skuId
          in: path
          type: integer
          description: SKU's unique numerical identifier.
          required: true
    - name: api-catalog-pvt-stockkeepingunit-skuId-specification-specificationId
      path: /api/catalog/pvt/stockkeepingunit/{skuId}/specification/{specificationId}
      operations:
      - name: delete
        method: DELETE
        description: VTex Delete SKU specification
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: skuId
          in: path
          type: integer
          description: SKU's unique numerical identifier.
          required: true
        - name: specificationId
          in: path
          type: integer
          description: Specification's unique numerical identifier.
          required: true
    - name: api-catalog-pvt-stockkeepingunit-skuId-specificationvalue
      path: /api/catalog/pvt/stockkeepingunit/{skuId}/specificationvalue
      operations:
      - name: put
        method: PUT
        description: VTex Associate SKU specification using specification name and group name
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: skuId
          in: path
          type: integer
          description: SKU's unique numerical identifier.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    authentication:
      type: apikey
      key: X-VTEX-API-AppKey
      value: '{{env.VTEX_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: catalog-sku-specification-rest
    port: 8080
    description: REST adapter for VTex Catalog API — SKU Specification. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/api/catalog/pvt/stockkeepingunit/{skuid}/specification
      name: api-catalog-pvt-stockkeepingunit-skuid-specification
      description: REST surface for api-catalog-pvt-stockkeepingunit-skuId-specification.
      operations:
      - method: GET
        name: get
        description: VTex Get SKU specifications
        call: catalog-sku-specification.get
        with:
          skuId: rest.skuId
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: post
        description: VTex Associate SKU specification
        call: catalog-sku-specification.post
        with:
          skuId: rest.skuId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: put
        description: VTex Update SKU specification
        call: catalog-sku-specification.put
        with:
          skuId: rest.skuId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: delete
        description: VTex Delete all SKU specifications
        call: catalog-sku-specification.delete
        with:
          skuId: rest.skuId
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/catalog/pvt/stockkeepingunit/{skuid}/specification/{specificationid}
      name: api-catalog-pvt-stockkeepingunit-skuid-specification-specificationid
      description: REST surface for api-catalog-pvt-stockkeepingunit-skuId-specification-specificationId.
      operations:
      - method: DELETE
        name: delete
        description: VTex Delete SKU specification
        call: catalog-sku-specification.delete
        with:
          skuId: rest.skuId
          specificationId: rest.specificationId
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/catalog/pvt/stockkeepingunit/{skuid}/specificationvalue
      name: api-catalog-pvt-stockkeepingunit-skuid-specificationvalue
      description: REST surface for api-catalog-pvt-stockkeepingunit-skuId-specificationvalue.
      operations:
      - method: PUT
        name: put
        description: VTex Associate SKU specification using specification name and group name
        call: catalog-sku-specification.put
        with:
          skuId: rest.skuId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: catalog-sku-specification-mcp
    port: 9090
    transport: http
    description: MCP adapter for VTex Catalog API — SKU Specification. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: vtex-get-sku-specifications
      description: VTex Get SKU specifications
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: catalog-sku-specification.get
      with:
        skuId: tools.skuId
      outputParameters:
      - type: object
        mapping: $.
    - name: vtex-associate-sku-specification
      description: VTex Associate SKU specification
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: catalog-sku-specification.post
      with:
        skuId: tools.skuId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: vtex-update-sku-specification
      description: VTex Update SKU specification
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: catalog-sku-specification.put
      with:
        skuId: tools.skuId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: vtex-delete-all-sku-specifications
      description: VTex Delete all SKU specifications
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: catalog-sku-specification.delete
      with:
        skuId: tools.skuId
      outputParameters:
      - type: object
        mapping: $.
    - name: vtex-delete-sku-specification
      description: VTex Delete SKU specification
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: catalog-sku-specification.delete
      with:
        skuId: tools.skuId
        specificationId: tools.specificationId
      outputParameters:
      - type: object
        mapping: $.
    - name: vtex-associate-sku-specification-using
      description: VTex Associate SKU specification using specification name and group name
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: catalog-sku-specification.put
      with:
        skuId: tools.skuId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.