Envoy Proxy · Capability

Envoy Proxy Admin API

Envoy Proxy Admin API. 2 operations. Lead operation: Envoy Proxy Admin Home. Self-contained Naftiko capability covering one Envoy Proxy business surface.

Run with Naftiko Envoy Proxy

What You Can Do

GET
Getadminhome — Envoy Proxy Admin Home
/v1
GET
Gethelp — Envoy Proxy List Available Endpoints
/v1/help

MCP Tools

envoy-proxy-admin-home

Envoy Proxy Admin Home

read-only idempotent
envoy-proxy-list-available-endpoints

Envoy Proxy List Available Endpoints

read-only idempotent

Capability Spec

admin-general.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Envoy Proxy Admin API
  description: 'Envoy Proxy Admin API. 2 operations. Lead operation: Envoy Proxy Admin Home. Self-contained Naftiko capability
    covering one Envoy Proxy business surface.'
  tags:
  - Envoy Proxy
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ENVOY_PROXY_API_KEY: ENVOY_PROXY_API_KEY
capability:
  consumes:
  - type: http
    namespace: admin-general
    baseUri: http://localhost:9901
    description: Envoy Proxy Admin API business capability. Self-contained, no shared references.
    resources:
    - name: root
      path: /
      operations:
      - name: getadminhome
        method: GET
        description: Envoy Proxy Admin Home
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: help
      path: /help
      operations:
      - name: gethelp
        method: GET
        description: Envoy Proxy List Available Endpoints
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
  exposes:
  - type: rest
    namespace: admin-general-rest
    port: 8080
    description: REST adapter for Envoy Proxy Admin API. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1
      name: root
      description: REST surface for root.
      operations:
      - method: GET
        name: getadminhome
        description: Envoy Proxy Admin Home
        call: admin-general.getadminhome
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/help
      name: help
      description: REST surface for help.
      operations:
      - method: GET
        name: gethelp
        description: Envoy Proxy List Available Endpoints
        call: admin-general.gethelp
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: admin-general-mcp
    port: 9090
    transport: http
    description: MCP adapter for Envoy Proxy Admin API. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: envoy-proxy-admin-home
      description: Envoy Proxy Admin Home
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: admin-general.getadminhome
      outputParameters:
      - type: object
        mapping: $.
    - name: envoy-proxy-list-available-endpoints
      description: Envoy Proxy List Available Endpoints
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: admin-general.gethelp
      outputParameters:
      - type: object
        mapping: $.