Emissary-Ingress · Capability

Emissary-Ingress Configuration API — Host

Emissary-Ingress Configuration API — Host. 5 operations. Lead operation: Emissary-Ingress List Host resources in a namespace. Self-contained Naftiko capability covering one Emissary Ingress business surface.

Run with Naftiko Emissary IngressHost

What You Can Do

GET
Listnamespacedhost — Emissary-Ingress List Host resources in a namespace
/v1/apis/getambassador-io/v3alpha1/namespaces/{namespace}/hosts
POST
Createnamespacedhost — Emissary-Ingress Create a Host resource
/v1/apis/getambassador-io/v3alpha1/namespaces/{namespace}/hosts
GET
Readnamespacedhost — Emissary-Ingress Get a specific Host resource
/v1/apis/getambassador-io/v3alpha1/namespaces/{namespace}/hosts/{name}
PUT
Replacenamespacedhost — Emissary-Ingress Replace a Host resource
/v1/apis/getambassador-io/v3alpha1/namespaces/{namespace}/hosts/{name}
DELETE
Deletenamespacedhost — Emissary-Ingress Delete a Host resource
/v1/apis/getambassador-io/v3alpha1/namespaces/{namespace}/hosts/{name}

MCP Tools

emissary-ingress-list-host-resources

Emissary-Ingress List Host resources in a namespace

read-only idempotent
emissary-ingress-create-host-resource

Emissary-Ingress Create a Host resource

emissary-ingress-get-specific-host

Emissary-Ingress Get a specific Host resource

read-only idempotent
emissary-ingress-replace-host-resource

Emissary-Ingress Replace a Host resource

idempotent
emissary-ingress-delete-host-resource

Emissary-Ingress Delete a Host resource

idempotent

Capability Spec

emissary-ingress-host.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Emissary-Ingress Configuration API — Host
  description: 'Emissary-Ingress Configuration API — Host. 5 operations. Lead operation: Emissary-Ingress List Host resources
    in a namespace. Self-contained Naftiko capability covering one Emissary Ingress business surface.'
  tags:
  - Emissary Ingress
  - Host
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    EMISSARY_INGRESS_API_KEY: EMISSARY_INGRESS_API_KEY
capability:
  consumes:
  - type: http
    namespace: emissary-ingress-host
    baseUri: https://{kubernetes-api-server}
    description: Emissary-Ingress Configuration API — Host business capability. Self-contained, no shared references.
    resources:
    - name: apis-getambassador.io-v3alpha1-namespaces-namespace-hosts
      path: /apis/getambassador.io/v3alpha1/namespaces/{namespace}/hosts
      operations:
      - name: listnamespacedhost
        method: GET
        description: Emissary-Ingress List Host resources in a namespace
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createnamespacedhost
        method: POST
        description: Emissary-Ingress Create a Host resource
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: apis-getambassador.io-v3alpha1-namespaces-namespace-hosts-name
      path: /apis/getambassador.io/v3alpha1/namespaces/{namespace}/hosts/{name}
      operations:
      - name: readnamespacedhost
        method: GET
        description: Emissary-Ingress Get a specific Host resource
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: replacenamespacedhost
        method: PUT
        description: Emissary-Ingress Replace a Host resource
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletenamespacedhost
        method: DELETE
        description: Emissary-Ingress Delete a Host resource
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
  exposes:
  - type: rest
    namespace: emissary-ingress-host-rest
    port: 8080
    description: REST adapter for Emissary-Ingress Configuration API — Host. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/apis/getambassador-io/v3alpha1/namespaces/{namespace}/hosts
      name: apis-getambassador-io-v3alpha1-namespaces-namespace-hosts
      description: REST surface for apis-getambassador.io-v3alpha1-namespaces-namespace-hosts.
      operations:
      - method: GET
        name: listnamespacedhost
        description: Emissary-Ingress List Host resources in a namespace
        call: emissary-ingress-host.listnamespacedhost
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createnamespacedhost
        description: Emissary-Ingress Create a Host resource
        call: emissary-ingress-host.createnamespacedhost
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/apis/getambassador-io/v3alpha1/namespaces/{namespace}/hosts/{name}
      name: apis-getambassador-io-v3alpha1-namespaces-namespace-hosts-name
      description: REST surface for apis-getambassador.io-v3alpha1-namespaces-namespace-hosts-name.
      operations:
      - method: GET
        name: readnamespacedhost
        description: Emissary-Ingress Get a specific Host resource
        call: emissary-ingress-host.readnamespacedhost
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: replacenamespacedhost
        description: Emissary-Ingress Replace a Host resource
        call: emissary-ingress-host.replacenamespacedhost
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletenamespacedhost
        description: Emissary-Ingress Delete a Host resource
        call: emissary-ingress-host.deletenamespacedhost
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: emissary-ingress-host-mcp
    port: 9090
    transport: http
    description: MCP adapter for Emissary-Ingress Configuration API — Host. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: emissary-ingress-list-host-resources
      description: Emissary-Ingress List Host resources in a namespace
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: emissary-ingress-host.listnamespacedhost
      outputParameters:
      - type: object
        mapping: $.
    - name: emissary-ingress-create-host-resource
      description: Emissary-Ingress Create a Host resource
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: emissary-ingress-host.createnamespacedhost
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: emissary-ingress-get-specific-host
      description: Emissary-Ingress Get a specific Host resource
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: emissary-ingress-host.readnamespacedhost
      outputParameters:
      - type: object
        mapping: $.
    - name: emissary-ingress-replace-host-resource
      description: Emissary-Ingress Replace a Host resource
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: emissary-ingress-host.replacenamespacedhost
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: emissary-ingress-delete-host-resource
      description: Emissary-Ingress Delete a Host resource
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: emissary-ingress-host.deletenamespacedhost
      outputParameters:
      - type: object
        mapping: $.