SolarWinds · Capability

SolarWinds Orion Platform API — Query

SolarWinds Orion Platform API — Query. 2 operations. Lead operation: Solarwinds Execute a Swql Query. Self-contained Naftiko capability covering one Solarwinds business surface.

Run with Naftiko SolarwindsQuery

What You Can Do

GET
Queryswis — Solarwinds Execute a Swql Query
/v1/query
POST
Queryswispost — Solarwinds Execute a Swql Query via Post
/v1/query

MCP Tools

solarwinds-execute-swql-query

Solarwinds Execute a Swql Query

read-only idempotent
solarwinds-execute-swql-query-post

Solarwinds Execute a Swql Query via Post

read-only

Capability Spec

orion-query.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: SolarWinds Orion Platform API — Query
  description: 'SolarWinds Orion Platform API — Query. 2 operations. Lead operation: Solarwinds Execute a Swql Query. Self-contained
    Naftiko capability covering one Solarwinds business surface.'
  tags:
  - Solarwinds
  - Query
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SOLARWINDS_API_KEY: SOLARWINDS_API_KEY
capability:
  consumes:
  - type: http
    namespace: orion-query
    baseUri: https://{orion-server}:17774/SolarWinds/InformationService/v3/Json
    description: SolarWinds Orion Platform API — Query business capability. Self-contained, no shared references.
    resources:
    - name: Query
      path: /Query
      operations:
      - name: queryswis
        method: GET
        description: Solarwinds Execute a Swql Query
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: queryswispost
        method: POST
        description: Solarwinds Execute a Swql Query via Post
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: basic
      username: '{{env.SOLARWINDS_USER}}'
      password: '{{env.SOLARWINDS_PASS}}'
  exposes:
  - type: rest
    namespace: orion-query-rest
    port: 8080
    description: REST adapter for SolarWinds Orion Platform API — Query. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/query
      name: query
      description: REST surface for Query.
      operations:
      - method: GET
        name: queryswis
        description: Solarwinds Execute a Swql Query
        call: orion-query.queryswis
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: queryswispost
        description: Solarwinds Execute a Swql Query via Post
        call: orion-query.queryswispost
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: orion-query-mcp
    port: 9090
    transport: http
    description: MCP adapter for SolarWinds Orion Platform API — Query. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: solarwinds-execute-swql-query
      description: Solarwinds Execute a Swql Query
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: orion-query.queryswis
      outputParameters:
      - type: object
        mapping: $.
    - name: solarwinds-execute-swql-query-post
      description: Solarwinds Execute a Swql Query via Post
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: orion-query.queryswispost
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.