Lemon Squeezy · Capability

Lemon Squeezy API — Order

Lemon Squeezy API — Order. 2 operations. Lead operation: Lemon Squeezy List all order items. Self-contained Naftiko capability covering one Lemon Squeezy business surface.

Run with Naftiko Lemon SqueezyOrder

What You Can Do

GET
Get — Lemon Squeezy List all order items
/v1/v1/order-items
GET
Get — Lemon Squeezy Retrieve an order item
/v1/v1/order-items/1

MCP Tools

lemon-squeezy-list-all-order

Lemon Squeezy List all order items

read-only idempotent
lemon-squeezy-retrieve-order-item

Lemon Squeezy Retrieve an order item

read-only idempotent

Capability Spec

lemon-squeezy-order.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Lemon Squeezy API — Order
  description: 'Lemon Squeezy API — Order. 2 operations. Lead operation: Lemon Squeezy List all order items. Self-contained
    Naftiko capability covering one Lemon Squeezy business surface.'
  tags:
  - Lemon Squeezy
  - Order
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    LEMON_SQUEEZY_API_KEY: LEMON_SQUEEZY_API_KEY
capability:
  consumes:
  - type: http
    namespace: lemon-squeezy-order
    baseUri: https://api.lemonsqueezy.com
    description: Lemon Squeezy API — Order business capability. Self-contained, no shared references.
    resources:
    - name: v1-order-items
      path: /v1/order-items
      operations:
      - name: get
        method: GET
        description: Lemon Squeezy List all order items
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: v1-order-items-1
      path: /v1/order-items/1
      operations:
      - name: get
        method: GET
        description: Lemon Squeezy Retrieve an order item
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.LEMON_SQUEEZY_API_KEY}}'
  exposes:
  - type: rest
    namespace: lemon-squeezy-order-rest
    port: 8080
    description: REST adapter for Lemon Squeezy API — Order. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/v1/order-items
      name: v1-order-items
      description: REST surface for v1-order-items.
      operations:
      - method: GET
        name: get
        description: Lemon Squeezy List all order items
        call: lemon-squeezy-order.get
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/order-items/1
      name: v1-order-items-1
      description: REST surface for v1-order-items-1.
      operations:
      - method: GET
        name: get
        description: Lemon Squeezy Retrieve an order item
        call: lemon-squeezy-order.get
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: lemon-squeezy-order-mcp
    port: 9090
    transport: http
    description: MCP adapter for Lemon Squeezy API — Order. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: lemon-squeezy-list-all-order
      description: Lemon Squeezy List all order items
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: lemon-squeezy-order.get
      outputParameters:
      - type: object
        mapping: $.
    - name: lemon-squeezy-retrieve-order-item
      description: Lemon Squeezy Retrieve an order item
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: lemon-squeezy-order.get
      outputParameters:
      - type: object
        mapping: $.