Solo.io · Capability

Solo.io Gloo Gateway Management API — Virtual Services

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

Run with Naftiko Solo IoVirtual Services

What You Can Do

GET
Listvirtualservices — Solo.io List virtual services
/v1/virtualservices
GET
Getvirtualservice — Solo.io Get virtual service details
/v1/virtualservices/{namespace}/{name}

MCP Tools

solo-io-list-virtual-services

Solo.io List virtual services

read-only idempotent
solo-io-get-virtual-service-details

Solo.io Get virtual service details

read-only idempotent

Capability Spec

gloo-gateway-management-virtual-services.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Solo.io Gloo Gateway Management API — Virtual Services
  description: 'Solo.io Gloo Gateway Management API — Virtual Services. 2 operations. Lead operation: Solo.io List virtual
    services. Self-contained Naftiko capability covering one Solo Io business surface.'
  tags:
  - Solo Io
  - Virtual Services
  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-virtual-services
    baseUri: https://{gatewayHost}/api/v1
    description: Solo.io Gloo Gateway Management API — Virtual Services business capability. Self-contained, no shared references.
    resources:
    - name: virtualservices
      path: /virtualservices
      operations:
      - name: listvirtualservices
        method: GET
        description: Solo.io List virtual services
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: namespace
          in: query
          type: string
          description: Filter virtual services by namespace
    - name: virtualservices-namespace-name
      path: /virtualservices/{namespace}/{name}
      operations:
      - name: getvirtualservice
        method: GET
        description: Solo.io Get virtual service 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-virtual-services-rest
    port: 8080
    description: REST adapter for Solo.io Gloo Gateway Management API — Virtual Services. One Spectral-compliant resource
      per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/virtualservices
      name: virtualservices
      description: REST surface for virtualservices.
      operations:
      - method: GET
        name: listvirtualservices
        description: Solo.io List virtual services
        call: gloo-gateway-management-virtual-services.listvirtualservices
        with:
          namespace: rest.namespace
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/virtualservices/{namespace}/{name}
      name: virtualservices-namespace-name
      description: REST surface for virtualservices-namespace-name.
      operations:
      - method: GET
        name: getvirtualservice
        description: Solo.io Get virtual service details
        call: gloo-gateway-management-virtual-services.getvirtualservice
        with:
          namespace: rest.namespace
          name: rest.name
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: gloo-gateway-management-virtual-services-mcp
    port: 9090
    transport: http
    description: MCP adapter for Solo.io Gloo Gateway Management API — Virtual Services. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: solo-io-list-virtual-services
      description: Solo.io List virtual services
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: gloo-gateway-management-virtual-services.listvirtualservices
      with:
        namespace: tools.namespace
      outputParameters:
      - type: object
        mapping: $.
    - name: solo-io-get-virtual-service-details
      description: Solo.io Get virtual service details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: gloo-gateway-management-virtual-services.getvirtualservice
      with:
        namespace: tools.namespace
        name: tools.name
      outputParameters:
      - type: object
        mapping: $.