Solo.io · Capability

Solo.io Gloo Gateway Management API — Gateways

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

Run with Naftiko Solo IoGateways

What You Can Do

GET
Listgateways — Solo.io List gateways
/v1/gateways
GET
Getgateway — Solo.io Get gateway details
/v1/gateways/{namespace}/{name}

MCP Tools

solo-io-list-gateways

Solo.io List gateways

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

Solo.io Get gateway details

read-only idempotent

Capability Spec

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