SolarWinds · Capability

SolarWinds Pingdom API — Summary

SolarWinds Pingdom API — Summary. 2 operations. Lead operation: Solarwinds Get Average Response Time Summary. Self-contained Naftiko capability covering one Solarwinds business surface.

Run with Naftiko SolarwindsSummary

What You Can Do

GET
Getsummaryaverage — Solarwinds Get Average Response Time Summary
/v1/summary-average/{checkid}
GET
Getsummaryoutage — Solarwinds Get Outage Summary
/v1/summary-outage/{checkid}

MCP Tools

solarwinds-get-average-response-time

Solarwinds Get Average Response Time Summary

read-only idempotent
solarwinds-get-outage-summary

Solarwinds Get Outage Summary

read-only idempotent

Capability Spec

pingdom-summary.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: SolarWinds Pingdom API — Summary
  description: 'SolarWinds Pingdom API — Summary. 2 operations. Lead operation: Solarwinds Get Average Response Time Summary.
    Self-contained Naftiko capability covering one Solarwinds business surface.'
  tags:
  - Solarwinds
  - Summary
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SOLARWINDS_API_KEY: SOLARWINDS_API_KEY
capability:
  consumes:
  - type: http
    namespace: pingdom-summary
    baseUri: https://api.pingdom.com/api/3.1
    description: SolarWinds Pingdom API — Summary business capability. Self-contained, no shared references.
    resources:
    - name: summary.average-checkid
      path: /summary.average/{checkid}
      operations:
      - name: getsummaryaverage
        method: GET
        description: Solarwinds Get Average Response Time Summary
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: from
          in: query
          type: integer
          description: Start of period (Unix timestamp)
        - name: to
          in: query
          type: integer
          description: End of period (Unix timestamp)
        - name: includeuptime
          in: query
          type: boolean
          description: Include uptime information
    - name: summary.outage-checkid
      path: /summary.outage/{checkid}
      operations:
      - name: getsummaryoutage
        method: GET
        description: Solarwinds Get Outage Summary
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: from
          in: query
          type: integer
          description: Start of period (Unix timestamp)
        - name: to
          in: query
          type: integer
          description: End of period (Unix timestamp)
    authentication:
      type: bearer
      token: '{{env.SOLARWINDS_API_KEY}}'
  exposes:
  - type: rest
    namespace: pingdom-summary-rest
    port: 8080
    description: REST adapter for SolarWinds Pingdom API — Summary. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/summary-average/{checkid}
      name: summary-average-checkid
      description: REST surface for summary.average-checkid.
      operations:
      - method: GET
        name: getsummaryaverage
        description: Solarwinds Get Average Response Time Summary
        call: pingdom-summary.getsummaryaverage
        with:
          from: rest.from
          to: rest.to
          includeuptime: rest.includeuptime
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/summary-outage/{checkid}
      name: summary-outage-checkid
      description: REST surface for summary.outage-checkid.
      operations:
      - method: GET
        name: getsummaryoutage
        description: Solarwinds Get Outage Summary
        call: pingdom-summary.getsummaryoutage
        with:
          from: rest.from
          to: rest.to
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: pingdom-summary-mcp
    port: 9090
    transport: http
    description: MCP adapter for SolarWinds Pingdom API — Summary. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: solarwinds-get-average-response-time
      description: Solarwinds Get Average Response Time Summary
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: pingdom-summary.getsummaryaverage
      with:
        from: tools.from
        to: tools.to
        includeuptime: tools.includeuptime
      outputParameters:
      - type: object
        mapping: $.
    - name: solarwinds-get-outage-summary
      description: Solarwinds Get Outage Summary
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: pingdom-summary.getsummaryoutage
      with:
        from: tools.from
        to: tools.to
      outputParameters:
      - type: object
        mapping: $.