Solo.io · Capability

Solo.io Gloo Gateway Management API — Proxies

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

Run with Naftiko Solo IoProxies

What You Can Do

GET
Listproxies — Solo.io List proxies
/v1/proxies
GET
Getproxy — Solo.io Get proxy details
/v1/proxies/{namespace}/{name}

MCP Tools

solo-io-list-proxies

Solo.io List proxies

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

Solo.io Get proxy details

read-only idempotent

Capability Spec

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