Adobe Launch · Capability

Adobe Launch Reactor API — Companies

Adobe Launch Reactor API — Companies. 2 operations. Lead operation: List Companies. Self-contained Naftiko capability covering one Adobe Launch business surface.

Run with Naftiko Adobe LaunchCompanies

What You Can Do

GET
Listcompanies — List Companies
/v1/companies
GET
Getcompany — Retrieve a Company
/v1/companies/{companyid}

MCP Tools

list-companies

List Companies

read-only idempotent
retrieve-company

Retrieve a Company

read-only idempotent

Capability Spec

reactor-companies.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Adobe Launch Reactor API — Companies
  description: 'Adobe Launch Reactor API — Companies. 2 operations. Lead operation: List Companies. Self-contained Naftiko
    capability covering one Adobe Launch business surface.'
  tags:
  - Adobe Launch
  - Companies
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ADOBE_LAUNCH_API_KEY: ADOBE_LAUNCH_API_KEY
capability:
  consumes:
  - type: http
    namespace: reactor-companies
    baseUri: https://reactor.adobe.io
    description: Adobe Launch Reactor API — Companies business capability. Self-contained, no shared references.
    resources:
    - name: companies
      path: /companies
      operations:
      - name: listcompanies
        method: GET
        description: List Companies
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: companies-companyId
      path: /companies/{companyId}
      operations:
      - name: getcompany
        method: GET
        description: Retrieve a Company
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.ADOBE_LAUNCH_API_KEY}}'
  exposes:
  - type: rest
    namespace: reactor-companies-rest
    port: 8080
    description: REST adapter for Adobe Launch Reactor API — Companies. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/companies
      name: companies
      description: REST surface for companies.
      operations:
      - method: GET
        name: listcompanies
        description: List Companies
        call: reactor-companies.listcompanies
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/companies/{companyid}
      name: companies-companyid
      description: REST surface for companies-companyId.
      operations:
      - method: GET
        name: getcompany
        description: Retrieve a Company
        call: reactor-companies.getcompany
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: reactor-companies-mcp
    port: 9090
    transport: http
    description: MCP adapter for Adobe Launch Reactor API — Companies. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-companies
      description: List Companies
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: reactor-companies.listcompanies
      outputParameters:
      - type: object
        mapping: $.
    - name: retrieve-company
      description: Retrieve a Company
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: reactor-companies.getcompany
      outputParameters:
      - type: object
        mapping: $.