Adobe Lightroom · Capability

Adobe Lightroom Lightroom Albums API — Album Assets

Adobe Lightroom Lightroom Albums API — Album Assets. 3 operations. Lead operation: Adobe Lightroom List Assets in an Album. Self-contained Naftiko capability covering one Lightroom business surface.

Run with Naftiko LightroomAlbum Assets

What You Can Do

GET
Listalbumassets — Adobe Lightroom List Assets in an Album
/v1/catalogs/{catalog-id}/albums/{album-id}/assets
PUT
Addassetstoalbum — Adobe Lightroom Add Assets to an Album
/v1/catalogs/{catalog-id}/albums/{album-id}/assets
DELETE
Removeassetfromalbum — Adobe Lightroom Remove an Asset From an Album
/v1/catalogs/{catalog-id}/albums/{album-id}/assets/{asset-id}

MCP Tools

adobe-lightroom-list-assets-album

Adobe Lightroom List Assets in an Album

read-only idempotent
adobe-lightroom-add-assets-album

Adobe Lightroom Add Assets to an Album

idempotent
adobe-lightroom-remove-asset-album

Adobe Lightroom Remove an Asset From an Album

idempotent

Capability Spec

albums-album-assets.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Adobe Lightroom Lightroom Albums API — Album Assets
  description: 'Adobe Lightroom Lightroom Albums API — Album Assets. 3 operations. Lead operation: Adobe Lightroom List Assets
    in an Album. Self-contained Naftiko capability covering one Lightroom business surface.'
  tags:
  - Lightroom
  - Album Assets
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    LIGHTROOM_API_KEY: LIGHTROOM_API_KEY
capability:
  consumes:
  - type: http
    namespace: albums-album-assets
    baseUri: https://lr.adobe.io/v2
    description: Adobe Lightroom Lightroom Albums API — Album Assets business capability. Self-contained, no shared references.
    resources:
    - name: catalogs-catalog_id-albums-album_id-assets
      path: /catalogs/{catalog_id}/albums/{album_id}/assets
      operations:
      - name: listalbumassets
        method: GET
        description: Adobe Lightroom List Assets in an Album
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: limit
          in: query
          type: integer
          description: Maximum number of results
        - name: offset
          in: query
          type: integer
          description: Pagination offset
      - name: addassetstoalbum
        method: PUT
        description: Adobe Lightroom Add Assets to an Album
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: catalogs-catalog_id-albums-album_id-assets-asset_id
      path: /catalogs/{catalog_id}/albums/{album_id}/assets/{asset_id}
      operations:
      - name: removeassetfromalbum
        method: DELETE
        description: Adobe Lightroom Remove an Asset From an Album
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: asset_id
          in: path
          type: string
          description: Asset ID to remove from the album
          required: true
    authentication:
      type: bearer
      token: '{{env.LIGHTROOM_API_KEY}}'
  exposes:
  - type: rest
    namespace: albums-album-assets-rest
    port: 8080
    description: REST adapter for Adobe Lightroom Lightroom Albums API — Album Assets. One Spectral-compliant resource per
      consumed operation, prefixed with /v1.
    resources:
    - path: /v1/catalogs/{catalog-id}/albums/{album-id}/assets
      name: catalogs-catalog-id-albums-album-id-assets
      description: REST surface for catalogs-catalog_id-albums-album_id-assets.
      operations:
      - method: GET
        name: listalbumassets
        description: Adobe Lightroom List Assets in an Album
        call: albums-album-assets.listalbumassets
        with:
          limit: rest.limit
          offset: rest.offset
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: addassetstoalbum
        description: Adobe Lightroom Add Assets to an Album
        call: albums-album-assets.addassetstoalbum
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/catalogs/{catalog-id}/albums/{album-id}/assets/{asset-id}
      name: catalogs-catalog-id-albums-album-id-assets-asset-id
      description: REST surface for catalogs-catalog_id-albums-album_id-assets-asset_id.
      operations:
      - method: DELETE
        name: removeassetfromalbum
        description: Adobe Lightroom Remove an Asset From an Album
        call: albums-album-assets.removeassetfromalbum
        with:
          asset_id: rest.asset_id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: albums-album-assets-mcp
    port: 9090
    transport: http
    description: MCP adapter for Adobe Lightroom Lightroom Albums API — Album Assets. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: adobe-lightroom-list-assets-album
      description: Adobe Lightroom List Assets in an Album
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: albums-album-assets.listalbumassets
      with:
        limit: tools.limit
        offset: tools.offset
      outputParameters:
      - type: object
        mapping: $.
    - name: adobe-lightroom-add-assets-album
      description: Adobe Lightroom Add Assets to an Album
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: albums-album-assets.addassetstoalbum
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: adobe-lightroom-remove-asset-album
      description: Adobe Lightroom Remove an Asset From an Album
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: albums-album-assets.removeassetfromalbum
      with:
        asset_id: tools.asset_id
      outputParameters:
      - type: object
        mapping: $.