Solo.io · Capability

Solo.io Gloo Gateway Management API — Route Tables

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

Run with Naftiko Solo IoRoute Tables

What You Can Do

GET
Listroutetables — Solo.io List route tables
/v1/routetables
GET
Getroutetable — Solo.io Get route table details
/v1/routetables/{namespace}/{name}

MCP Tools

solo-io-list-route-tables

Solo.io List route tables

read-only idempotent
solo-io-get-route-table-details

Solo.io Get route table details

read-only idempotent

Capability Spec

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