Lowe's · Capability

Lowe's Product API — Stores

Lowe's Product API — Stores. 1 operations. Lead operation: List stores. Self-contained Naftiko capability covering one Lowes business surface.

Run with Naftiko LowesStores

What You Can Do

GET
Liststores — List stores
/v1/stores

MCP Tools

list-stores

List stores

read-only idempotent

Capability Spec

product-stores.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Lowe's Product API — Stores
  description: 'Lowe''s Product API — Stores. 1 operations. Lead operation: List stores. Self-contained Naftiko capability
    covering one Lowes business surface.'
  tags:
  - Lowes
  - Stores
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    LOWES_API_KEY: LOWES_API_KEY
capability:
  consumes:
  - type: http
    namespace: product-stores
    baseUri: https://apis.lowes.com
    description: Lowe's Product API — Stores business capability. Self-contained, no shared references.
    resources:
    - name: stores
      path: /stores
      operations:
      - name: liststores
        method: GET
        description: List stores
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: zipCode
          in: query
          type: string
          description: Filter stores by zip code proximity.
    authentication:
      type: bearer
      token: '{{env.LOWES_API_KEY}}'
  exposes:
  - type: rest
    namespace: product-stores-rest
    port: 8080
    description: REST adapter for Lowe's Product API — Stores. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/stores
      name: stores
      description: REST surface for stores.
      operations:
      - method: GET
        name: liststores
        description: List stores
        call: product-stores.liststores
        with:
          zipCode: rest.zipCode
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: product-stores-mcp
    port: 9090
    transport: http
    description: MCP adapter for Lowe's Product API — Stores. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: list-stores
      description: List stores
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: product-stores.liststores
      with:
        zipCode: tools.zipCode
      outputParameters:
      - type: object
        mapping: $.