Solo.io · Capability

Solo.io Gloo Portal Server API — Authentication

Solo.io Gloo Portal Server API — Authentication. 2 operations. Lead operation: Solo.io Login to developer portal. Self-contained Naftiko capability covering one Solo Io business surface.

Run with Naftiko Solo IoAuthentication

What You Can Do

GET
Login — Solo.io Login to developer portal
/v1/login
GET
Logout — Solo.io Logout from developer portal
/v1/logout

MCP Tools

solo-io-login-developer-portal

Solo.io Login to developer portal

read-only idempotent
solo-io-logout-developer-portal

Solo.io Logout from developer portal

read-only idempotent

Capability Spec

gloo-portal-server-authentication.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Solo.io Gloo Portal Server API — Authentication
  description: 'Solo.io Gloo Portal Server API — Authentication. 2 operations. Lead operation: Solo.io Login to developer
    portal. Self-contained Naftiko capability covering one Solo Io business surface.'
  tags:
  - Solo Io
  - Authentication
  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-authentication
    baseUri: https://{portalHost}/v1
    description: Solo.io Gloo Portal Server API — Authentication business capability. Self-contained, no shared references.
    resources:
    - name: login
      path: /login
      operations:
      - name: login
        method: GET
        description: Solo.io Login to developer portal
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: logout
      path: /logout
      operations:
      - name: logout
        method: GET
        description: Solo.io Logout from developer portal
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.SOLO_IO_API_KEY}}'
  exposes:
  - type: rest
    namespace: gloo-portal-server-authentication-rest
    port: 8080
    description: REST adapter for Solo.io Gloo Portal Server API — Authentication. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/login
      name: login
      description: REST surface for login.
      operations:
      - method: GET
        name: login
        description: Solo.io Login to developer portal
        call: gloo-portal-server-authentication.login
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/logout
      name: logout
      description: REST surface for logout.
      operations:
      - method: GET
        name: logout
        description: Solo.io Logout from developer portal
        call: gloo-portal-server-authentication.logout
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: gloo-portal-server-authentication-mcp
    port: 9090
    transport: http
    description: MCP adapter for Solo.io Gloo Portal Server API — Authentication. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: solo-io-login-developer-portal
      description: Solo.io Login to developer portal
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: gloo-portal-server-authentication.login
      outputParameters:
      - type: object
        mapping: $.
    - name: solo-io-logout-developer-portal
      description: Solo.io Logout from developer portal
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: gloo-portal-server-authentication.logout
      outputParameters:
      - type: object
        mapping: $.