SolarWinds · Capability

SolarWinds Service Desk API — Incidents

SolarWinds Service Desk API — Incidents. 5 operations. Lead operation: Solarwinds List Incidents. Self-contained Naftiko capability covering one Solarwinds business surface.

Run with Naftiko SolarwindsIncidents

What You Can Do

GET
Listincidents — Solarwinds List Incidents
/v1/incidents-json
POST
Createincident — Solarwinds Create an Incident
/v1/incidents-json
GET
Getincident — Solarwinds Get an Incident
/v1/incidents/id-json
PUT
Updateincident — Solarwinds Update an Incident
/v1/incidents/id-json
DELETE
Deleteincident — Solarwinds Delete an Incident
/v1/incidents/id-json

MCP Tools

solarwinds-list-incidents

Solarwinds List Incidents

read-only idempotent
solarwinds-create-incident

Solarwinds Create an Incident

solarwinds-get-incident

Solarwinds Get an Incident

read-only idempotent
solarwinds-update-incident

Solarwinds Update an Incident

idempotent
solarwinds-delete-incident

Solarwinds Delete an Incident

idempotent

Capability Spec

service-desk-incidents.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: SolarWinds Service Desk API — Incidents
  description: 'SolarWinds Service Desk API — Incidents. 5 operations. Lead operation: Solarwinds List Incidents. Self-contained
    Naftiko capability covering one Solarwinds business surface.'
  tags:
  - Solarwinds
  - Incidents
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SOLARWINDS_API_KEY: SOLARWINDS_API_KEY
capability:
  consumes:
  - type: http
    namespace: service-desk-incidents
    baseUri: https://api.samanage.com
    description: SolarWinds Service Desk API — Incidents business capability. Self-contained, no shared references.
    resources:
    - name: incidents.json
      path: /incidents.json
      operations:
      - name: listincidents
        method: GET
        description: Solarwinds List Incidents
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createincident
        method: POST
        description: Solarwinds Create an Incident
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: incidents-id}.json
      path: /incidents/{id}.json
      operations:
      - name: getincident
        method: GET
        description: Solarwinds Get an Incident
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updateincident
        method: PUT
        description: Solarwinds Update an Incident
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteincident
        method: DELETE
        description: Solarwinds Delete an Incident
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.SOLARWINDS_API_KEY}}'
  exposes:
  - type: rest
    namespace: service-desk-incidents-rest
    port: 8080
    description: REST adapter for SolarWinds Service Desk API — Incidents. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/incidents-json
      name: incidents-json
      description: REST surface for incidents.json.
      operations:
      - method: GET
        name: listincidents
        description: Solarwinds List Incidents
        call: service-desk-incidents.listincidents
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createincident
        description: Solarwinds Create an Incident
        call: service-desk-incidents.createincident
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/incidents/id-json
      name: incidents-id-json
      description: REST surface for incidents-id}.json.
      operations:
      - method: GET
        name: getincident
        description: Solarwinds Get an Incident
        call: service-desk-incidents.getincident
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateincident
        description: Solarwinds Update an Incident
        call: service-desk-incidents.updateincident
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteincident
        description: Solarwinds Delete an Incident
        call: service-desk-incidents.deleteincident
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: service-desk-incidents-mcp
    port: 9090
    transport: http
    description: MCP adapter for SolarWinds Service Desk API — Incidents. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: solarwinds-list-incidents
      description: Solarwinds List Incidents
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: service-desk-incidents.listincidents
      outputParameters:
      - type: object
        mapping: $.
    - name: solarwinds-create-incident
      description: Solarwinds Create an Incident
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: service-desk-incidents.createincident
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: solarwinds-get-incident
      description: Solarwinds Get an Incident
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: service-desk-incidents.getincident
      outputParameters:
      - type: object
        mapping: $.
    - name: solarwinds-update-incident
      description: Solarwinds Update an Incident
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: service-desk-incidents.updateincident
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: solarwinds-delete-incident
      description: Solarwinds Delete an Incident
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: service-desk-incidents.deleteincident
      outputParameters:
      - type: object
        mapping: $.