SolarWinds · Capability

SolarWinds Service Desk API — ServiceRequests

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

Run with Naftiko SolarwindsServiceRequests

What You Can Do

GET
Listservicerequests — Solarwinds List Service Requests
/v1/service-requests-json
POST
Createservicerequest — Solarwinds Create a Service Request
/v1/service-requests-json

MCP Tools

solarwinds-list-service-requests

Solarwinds List Service Requests

read-only idempotent
solarwinds-create-service-request

Solarwinds Create a Service Request

Capability Spec

service-desk-servicerequests.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: SolarWinds Service Desk API — ServiceRequests
  description: 'SolarWinds Service Desk API — ServiceRequests. 2 operations. Lead operation: Solarwinds List Service Requests.
    Self-contained Naftiko capability covering one Solarwinds business surface.'
  tags:
  - Solarwinds
  - ServiceRequests
  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-servicerequests
    baseUri: https://api.samanage.com
    description: SolarWinds Service Desk API — ServiceRequests business capability. Self-contained, no shared references.
    resources:
    - name: service_requests.json
      path: /service_requests.json
      operations:
      - name: listservicerequests
        method: GET
        description: Solarwinds List Service Requests
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createservicerequest
        method: POST
        description: Solarwinds Create a Service Request
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.SOLARWINDS_API_KEY}}'
  exposes:
  - type: rest
    namespace: service-desk-servicerequests-rest
    port: 8080
    description: REST adapter for SolarWinds Service Desk API — ServiceRequests. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/service-requests-json
      name: service-requests-json
      description: REST surface for service_requests.json.
      operations:
      - method: GET
        name: listservicerequests
        description: Solarwinds List Service Requests
        call: service-desk-servicerequests.listservicerequests
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createservicerequest
        description: Solarwinds Create a Service Request
        call: service-desk-servicerequests.createservicerequest
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: service-desk-servicerequests-mcp
    port: 9090
    transport: http
    description: MCP adapter for SolarWinds Service Desk API — ServiceRequests. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: solarwinds-list-service-requests
      description: Solarwinds List Service Requests
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: service-desk-servicerequests.listservicerequests
      outputParameters:
      - type: object
        mapping: $.
    - name: solarwinds-create-service-request
      description: Solarwinds Create a Service Request
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: service-desk-servicerequests.createservicerequest
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.