Solo.io · Capability

Solo.io Gloo Gateway Management API — Upstreams

Solo.io Gloo Gateway Management API — Upstreams. 2 operations. Lead operation: Solo.io List upstreams. Self-contained Naftiko capability covering one Solo Io business surface.

Run with Naftiko Solo IoUpstreams

What You Can Do

GET
Listupstreams — Solo.io List upstreams
/v1/upstreams
GET
Getupstream — Solo.io Get upstream details
/v1/upstreams/{namespace}/{name}

MCP Tools

solo-io-list-upstreams

Solo.io List upstreams

read-only idempotent
solo-io-get-upstream-details

Solo.io Get upstream details

read-only idempotent

Capability Spec

gloo-gateway-management-upstreams.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Solo.io Gloo Gateway Management API — Upstreams
  description: 'Solo.io Gloo Gateway Management API — Upstreams. 2 operations. Lead operation: Solo.io List upstreams. Self-contained
    Naftiko capability covering one Solo Io business surface.'
  tags:
  - Solo Io
  - Upstreams
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SOLO_IO_API_KEY: SOLO_IO_API_KEY
capability:
  consumes:
  - type: http
    namespace: gloo-gateway-management-upstreams
    baseUri: https://{gatewayHost}/api/v1
    description: Solo.io Gloo Gateway Management API — Upstreams business capability. Self-contained, no shared references.
    resources:
    - name: upstreams
      path: /upstreams
      operations:
      - name: listupstreams
        method: GET
        description: Solo.io List upstreams
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: namespace
          in: query
          type: string
          description: Filter upstreams by namespace
    - name: upstreams-namespace-name
      path: /upstreams/{namespace}/{name}
      operations:
      - name: getupstream
        method: GET
        description: Solo.io Get upstream details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: namespace
          in: path
          type: string
          required: true
        - name: name
          in: path
          type: string
          required: true
  exposes:
  - type: rest
    namespace: gloo-gateway-management-upstreams-rest
    port: 8080
    description: REST adapter for Solo.io Gloo Gateway Management API — Upstreams. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/upstreams
      name: upstreams
      description: REST surface for upstreams.
      operations:
      - method: GET
        name: listupstreams
        description: Solo.io List upstreams
        call: gloo-gateway-management-upstreams.listupstreams
        with:
          namespace: rest.namespace
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/upstreams/{namespace}/{name}
      name: upstreams-namespace-name
      description: REST surface for upstreams-namespace-name.
      operations:
      - method: GET
        name: getupstream
        description: Solo.io Get upstream details
        call: gloo-gateway-management-upstreams.getupstream
        with:
          namespace: rest.namespace
          name: rest.name
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: gloo-gateway-management-upstreams-mcp
    port: 9090
    transport: http
    description: MCP adapter for Solo.io Gloo Gateway Management API — Upstreams. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: solo-io-list-upstreams
      description: Solo.io List upstreams
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: gloo-gateway-management-upstreams.listupstreams
      with:
        namespace: tools.namespace
      outputParameters:
      - type: object
        mapping: $.
    - name: solo-io-get-upstream-details
      description: Solo.io Get upstream details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: gloo-gateway-management-upstreams.getupstream
      with:
        namespace: tools.namespace
        name: tools.name
      outputParameters:
      - type: object
        mapping: $.