SolarWinds · Capability

SolarWinds Orion Platform API — CRUD

SolarWinds Orion Platform API — CRUD. 4 operations. Lead operation: Solarwinds Create a New Swis Entity. Self-contained Naftiko capability covering one Solarwinds business surface.

Run with Naftiko SolarwindsCRUD

What You Can Do

POST
Createentity — Solarwinds Create a New Swis Entity
/v1/create/{entitytype}
GET
Readentity — Solarwinds Read a Swis Entity
/v1/{entityuri}
POST
Updateentity — Solarwinds Update a Swis Entity
/v1/{entityuri}
DELETE
Deleteentity — Solarwinds Delete a Swis Entity
/v1/{entityuri}

MCP Tools

solarwinds-create-new-swis-entity

Solarwinds Create a New Swis Entity

solarwinds-read-swis-entity

Solarwinds Read a Swis Entity

read-only idempotent
solarwinds-update-swis-entity

Solarwinds Update a Swis Entity

solarwinds-delete-swis-entity

Solarwinds Delete a Swis Entity

idempotent

Capability Spec

orion-crud.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: SolarWinds Orion Platform API — CRUD
  description: 'SolarWinds Orion Platform API — CRUD. 4 operations. Lead operation: Solarwinds Create a New Swis Entity. Self-contained
    Naftiko capability covering one Solarwinds business surface.'
  tags:
  - Solarwinds
  - CRUD
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SOLARWINDS_API_KEY: SOLARWINDS_API_KEY
capability:
  consumes:
  - type: http
    namespace: orion-crud
    baseUri: https://{orion-server}:17774/SolarWinds/InformationService/v3/Json
    description: SolarWinds Orion Platform API — CRUD business capability. Self-contained, no shared references.
    resources:
    - name: Create-entityType
      path: /Create/{entityType}
      operations:
      - name: createentity
        method: POST
        description: Solarwinds Create a New Swis Entity
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: entityUri
      path: /{entityUri}
      operations:
      - name: readentity
        method: GET
        description: Solarwinds Read a Swis Entity
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: entityUri
          in: path
          type: string
          description: SWIS URI of the entity to read
          required: true
      - name: updateentity
        method: POST
        description: Solarwinds Update a Swis Entity
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: entityUri
          in: path
          type: string
          description: SWIS URI of the entity to update
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteentity
        method: DELETE
        description: Solarwinds Delete a Swis Entity
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: entityUri
          in: path
          type: string
          description: SWIS URI of the entity to delete
          required: true
    authentication:
      type: basic
      username: '{{env.SOLARWINDS_USER}}'
      password: '{{env.SOLARWINDS_PASS}}'
  exposes:
  - type: rest
    namespace: orion-crud-rest
    port: 8080
    description: REST adapter for SolarWinds Orion Platform API — CRUD. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/create/{entitytype}
      name: create-entitytype
      description: REST surface for Create-entityType.
      operations:
      - method: POST
        name: createentity
        description: Solarwinds Create a New Swis Entity
        call: orion-crud.createentity
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/{entityuri}
      name: entityuri
      description: REST surface for entityUri.
      operations:
      - method: GET
        name: readentity
        description: Solarwinds Read a Swis Entity
        call: orion-crud.readentity
        with:
          entityUri: rest.entityUri
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: updateentity
        description: Solarwinds Update a Swis Entity
        call: orion-crud.updateentity
        with:
          entityUri: rest.entityUri
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteentity
        description: Solarwinds Delete a Swis Entity
        call: orion-crud.deleteentity
        with:
          entityUri: rest.entityUri
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: orion-crud-mcp
    port: 9090
    transport: http
    description: MCP adapter for SolarWinds Orion Platform API — CRUD. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: solarwinds-create-new-swis-entity
      description: Solarwinds Create a New Swis Entity
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: orion-crud.createentity
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: solarwinds-read-swis-entity
      description: Solarwinds Read a Swis Entity
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: orion-crud.readentity
      with:
        entityUri: tools.entityUri
      outputParameters:
      - type: object
        mapping: $.
    - name: solarwinds-update-swis-entity
      description: Solarwinds Update a Swis Entity
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: orion-crud.updateentity
      with:
        entityUri: tools.entityUri
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: solarwinds-delete-swis-entity
      description: Solarwinds Delete a Swis Entity
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: orion-crud.deleteentity
      with:
        entityUri: tools.entityUri
      outputParameters:
      - type: object
        mapping: $.