Amazon · Capability

Amazon Selling Partner API — Listings

Amazon Selling Partner API — Listings. 4 operations. Lead operation: Amazon Get Listing Item. Self-contained Naftiko capability covering one Amazon business surface.

Run with Naftiko AmazonListings

What You Can Do

GET
Getlistingsitem — Amazon Get Listing Item
/v1/listings/2021-08-01/items/{sellerid}/{sku}
PUT
Putlistingsitem — Amazon Create or Replace Listing Item
/v1/listings/2021-08-01/items/{sellerid}/{sku}
PATCH
Patchlistingsitem — Amazon Partially Update Listing Item
/v1/listings/2021-08-01/items/{sellerid}/{sku}
DELETE
Deletelistingsitem — Amazon Delete Listing Item
/v1/listings/2021-08-01/items/{sellerid}/{sku}

MCP Tools

amazon-get-listing-item

Amazon Get Listing Item

read-only idempotent
amazon-create-replace-listing-item

Amazon Create or Replace Listing Item

idempotent
amazon-partially-update-listing-item

Amazon Partially Update Listing Item

idempotent
amazon-delete-listing-item

Amazon Delete Listing Item

idempotent

Capability Spec

selling-partner-listings.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Amazon Selling Partner API — Listings
  description: 'Amazon Selling Partner API — Listings. 4 operations. Lead operation: Amazon Get Listing Item. Self-contained
    Naftiko capability covering one Amazon business surface.'
  tags:
  - Amazon
  - Listings
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    AMAZON_API_KEY: AMAZON_API_KEY
capability:
  consumes:
  - type: http
    namespace: selling-partner-listings
    baseUri: https://sellingpartnerapi-na.amazon.com
    description: Amazon Selling Partner API — Listings business capability. Self-contained, no shared references.
    resources:
    - name: listings-2021-08-01-items-sellerId-sku
      path: /listings/2021-08-01/items/{sellerId}/{sku}
      operations:
      - name: getlistingsitem
        method: GET
        description: Amazon Get Listing Item
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: sellerId
          in: path
          type: string
          required: true
        - name: sku
          in: path
          type: string
          required: true
      - name: putlistingsitem
        method: PUT
        description: Amazon Create or Replace Listing Item
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: sellerId
          in: path
          type: string
          required: true
        - name: sku
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: patchlistingsitem
        method: PATCH
        description: Amazon Partially Update Listing Item
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: sellerId
          in: path
          type: string
          required: true
        - name: sku
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletelistingsitem
        method: DELETE
        description: Amazon Delete Listing Item
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: sellerId
          in: path
          type: string
          required: true
        - name: sku
          in: path
          type: string
          required: true
    authentication:
      type: bearer
      token: '{{env.AMAZON_API_KEY}}'
  exposes:
  - type: rest
    namespace: selling-partner-listings-rest
    port: 8080
    description: REST adapter for Amazon Selling Partner API — Listings. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/listings/2021-08-01/items/{sellerid}/{sku}
      name: listings-2021-08-01-items-sellerid-sku
      description: REST surface for listings-2021-08-01-items-sellerId-sku.
      operations:
      - method: GET
        name: getlistingsitem
        description: Amazon Get Listing Item
        call: selling-partner-listings.getlistingsitem
        with:
          sellerId: rest.sellerId
          sku: rest.sku
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: putlistingsitem
        description: Amazon Create or Replace Listing Item
        call: selling-partner-listings.putlistingsitem
        with:
          sellerId: rest.sellerId
          sku: rest.sku
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: patchlistingsitem
        description: Amazon Partially Update Listing Item
        call: selling-partner-listings.patchlistingsitem
        with:
          sellerId: rest.sellerId
          sku: rest.sku
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletelistingsitem
        description: Amazon Delete Listing Item
        call: selling-partner-listings.deletelistingsitem
        with:
          sellerId: rest.sellerId
          sku: rest.sku
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: selling-partner-listings-mcp
    port: 9090
    transport: http
    description: MCP adapter for Amazon Selling Partner API — Listings. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: amazon-get-listing-item
      description: Amazon Get Listing Item
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: selling-partner-listings.getlistingsitem
      with:
        sellerId: tools.sellerId
        sku: tools.sku
      outputParameters:
      - type: object
        mapping: $.
    - name: amazon-create-replace-listing-item
      description: Amazon Create or Replace Listing Item
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: selling-partner-listings.putlistingsitem
      with:
        sellerId: tools.sellerId
        sku: tools.sku
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: amazon-partially-update-listing-item
      description: Amazon Partially Update Listing Item
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: selling-partner-listings.patchlistingsitem
      with:
        sellerId: tools.sellerId
        sku: tools.sku
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: amazon-delete-listing-item
      description: Amazon Delete Listing Item
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: selling-partner-listings.deletelistingsitem
      with:
        sellerId: tools.sellerId
        sku: tools.sku
      outputParameters:
      - type: object
        mapping: $.