Sumo Logic · Capability

Sumo Logic API — appManagement

Sumo Logic API — appManagement. 4 operations. Lead operation: List Available Apps.. Self-contained Naftiko capability covering one Sumo Logic business surface.

Run with Naftiko Sumo LogicappManagement

What You Can Do

GET
Listapps — List Available Apps.
/v1/v1/apps
GET
Getasyncinstallstatus — App Install Job Status.
/v1/v1/apps/install/{jobid}/status
GET
Getapp — Get An App By UUID.
/v1/v1/apps/{uuid}
POST
Installapp — Install An App By UUID.
/v1/v1/apps/{uuid}/install

MCP Tools

list-available-apps

List Available Apps.

read-only idempotent
app-install-job-status

App Install Job Status.

read-only idempotent
get-app-uuid

Get An App By UUID.

read-only idempotent
install-app-uuid

Install An App By UUID.

Capability Spec

sumo-logic-appmanagement.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Sumo Logic API — appManagement
  description: 'Sumo Logic API — appManagement. 4 operations. Lead operation: List Available Apps.. Self-contained Naftiko
    capability covering one Sumo Logic business surface.'
  tags:
  - Sumo Logic
  - appManagement
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SUMO_LOGIC_API_KEY: SUMO_LOGIC_API_KEY
capability:
  consumes:
  - type: http
    namespace: sumo-logic-appmanagement
    baseUri: https://api.au.sumologic.com/api
    description: Sumo Logic API — appManagement business capability. Self-contained, no shared references.
    resources:
    - name: v1-apps
      path: /v1/apps
      operations:
      - name: listapps
        method: GET
        description: List Available Apps.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: v1-apps-install-jobId-status
      path: /v1/apps/install/{jobId}/status
      operations:
      - name: getasyncinstallstatus
        method: GET
        description: App Install Job Status.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: jobId
          in: path
          type: string
          description: The identifier of the asynchronous install job.
          required: true
    - name: v1-apps-uuid
      path: /v1/apps/{uuid}
      operations:
      - name: getapp
        method: GET
        description: Get An App By UUID.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: uuid
          in: path
          type: string
          description: The identifier of the app to retrieve.
          required: true
    - name: v1-apps-uuid-install
      path: /v1/apps/{uuid}/install
      operations:
      - name: installapp
        method: POST
        description: Install An App By UUID.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: uuid
          in: path
          type: string
          description: UUID of the app to install.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: basic
      username: '{{env.SUMO_LOGIC_USER}}'
      password: '{{env.SUMO_LOGIC_PASS}}'
  exposes:
  - type: rest
    namespace: sumo-logic-appmanagement-rest
    port: 8080
    description: REST adapter for Sumo Logic API — appManagement. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v1/apps
      name: v1-apps
      description: REST surface for v1-apps.
      operations:
      - method: GET
        name: listapps
        description: List Available Apps.
        call: sumo-logic-appmanagement.listapps
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/apps/install/{jobid}/status
      name: v1-apps-install-jobid-status
      description: REST surface for v1-apps-install-jobId-status.
      operations:
      - method: GET
        name: getasyncinstallstatus
        description: App Install Job Status.
        call: sumo-logic-appmanagement.getasyncinstallstatus
        with:
          jobId: rest.jobId
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/apps/{uuid}
      name: v1-apps-uuid
      description: REST surface for v1-apps-uuid.
      operations:
      - method: GET
        name: getapp
        description: Get An App By UUID.
        call: sumo-logic-appmanagement.getapp
        with:
          uuid: rest.uuid
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/apps/{uuid}/install
      name: v1-apps-uuid-install
      description: REST surface for v1-apps-uuid-install.
      operations:
      - method: POST
        name: installapp
        description: Install An App By UUID.
        call: sumo-logic-appmanagement.installapp
        with:
          uuid: rest.uuid
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: sumo-logic-appmanagement-mcp
    port: 9090
    transport: http
    description: MCP adapter for Sumo Logic API — appManagement. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: list-available-apps
      description: List Available Apps.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: sumo-logic-appmanagement.listapps
      outputParameters:
      - type: object
        mapping: $.
    - name: app-install-job-status
      description: App Install Job Status.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: sumo-logic-appmanagement.getasyncinstallstatus
      with:
        jobId: tools.jobId
      outputParameters:
      - type: object
        mapping: $.
    - name: get-app-uuid
      description: Get An App By UUID.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: sumo-logic-appmanagement.getapp
      with:
        uuid: tools.uuid
      outputParameters:
      - type: object
        mapping: $.
    - name: install-app-uuid
      description: Install An App By UUID.
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: sumo-logic-appmanagement.installapp
      with:
        uuid: tools.uuid
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.