Solo.io · Capability

Solo.io Gloo Portal Server API

Solo.io Gloo Portal Server API. 3 operations. Lead operation: Solo.io List available APIs. Self-contained Naftiko capability covering one Solo Io business surface.

Run with Naftiko Solo Io

What You Can Do

GET
Listapis — Solo.io List available APIs
/v1/apis
GET
Getapi — Solo.io Get API details
/v1/apis/{apiid}
GET
Getapischema — Solo.io Get API schema
/v1/apis/{apiid}/schema

MCP Tools

solo-io-list-available-apis

Solo.io List available APIs

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

Solo.io Get API details

read-only idempotent
solo-io-get-api-schema

Solo.io Get API schema

read-only idempotent

Capability Spec

gloo-portal-server-general.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Solo.io Gloo Portal Server API
  description: 'Solo.io Gloo Portal Server API. 3 operations. Lead operation: Solo.io List available APIs. Self-contained
    Naftiko capability covering one Solo Io business surface.'
  tags:
  - Solo Io
  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-portal-server-general
    baseUri: https://{portalHost}/v1
    description: Solo.io Gloo Portal Server API business capability. Self-contained, no shared references.
    resources:
    - name: apis
      path: /apis
      operations:
      - name: listapis
        method: GET
        description: Solo.io List available APIs
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: offset
          in: query
          type: integer
          description: Pagination offset for the list of APIs
        - name: limit
          in: query
          type: integer
          description: Maximum number of APIs to return
    - name: apis-apiId
      path: /apis/{apiId}
      operations:
      - name: getapi
        method: GET
        description: Solo.io Get API details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: apiId
          in: path
          type: string
          description: Unique identifier of the API product
          required: true
    - name: apis-apiId-schema
      path: /apis/{apiId}/schema
      operations:
      - name: getapischema
        method: GET
        description: Solo.io Get API schema
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: apiId
          in: path
          type: string
          description: Unique identifier of the API product
          required: true
    authentication:
      type: bearer
      token: '{{env.SOLO_IO_API_KEY}}'
  exposes:
  - type: rest
    namespace: gloo-portal-server-general-rest
    port: 8080
    description: REST adapter for Solo.io Gloo Portal Server API. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/apis
      name: apis
      description: REST surface for apis.
      operations:
      - method: GET
        name: listapis
        description: Solo.io List available APIs
        call: gloo-portal-server-general.listapis
        with:
          offset: rest.offset
          limit: rest.limit
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/apis/{apiid}
      name: apis-apiid
      description: REST surface for apis-apiId.
      operations:
      - method: GET
        name: getapi
        description: Solo.io Get API details
        call: gloo-portal-server-general.getapi
        with:
          apiId: rest.apiId
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/apis/{apiid}/schema
      name: apis-apiid-schema
      description: REST surface for apis-apiId-schema.
      operations:
      - method: GET
        name: getapischema
        description: Solo.io Get API schema
        call: gloo-portal-server-general.getapischema
        with:
          apiId: rest.apiId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: gloo-portal-server-general-mcp
    port: 9090
    transport: http
    description: MCP adapter for Solo.io Gloo Portal Server API. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: solo-io-list-available-apis
      description: Solo.io List available APIs
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: gloo-portal-server-general.listapis
      with:
        offset: tools.offset
        limit: tools.limit
      outputParameters:
      - type: object
        mapping: $.
    - name: solo-io-get-api-details
      description: Solo.io Get API details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: gloo-portal-server-general.getapi
      with:
        apiId: tools.apiId
      outputParameters:
      - type: object
        mapping: $.
    - name: solo-io-get-api-schema
      description: Solo.io Get API schema
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: gloo-portal-server-general.getapischema
      with:
        apiId: tools.apiId
      outputParameters:
      - type: object
        mapping: $.