Kuma · Capability

Kuma API — MeshExternalService

Kuma API — MeshExternalService. 4 operations. Lead operation: Returns a list of MeshExternalService in the mesh.. Self-contained Naftiko capability covering one Kuma business surface.

Run with Naftiko KumaMeshExternalService

What You Can Do

GET
Getmeshexternalservicelist — Returns a list of MeshExternalService in the mesh.
/v1/meshes/{mesh}/meshexternalservices
GET
Getmeshexternalservice — Returns MeshExternalService entity
/v1/meshes/{mesh}/meshexternalservices/{name}
PUT
Putmeshexternalservice — Creates or Updates MeshExternalService entity
/v1/meshes/{mesh}/meshexternalservices/{name}
DELETE
Deletemeshexternalservice — Deletes MeshExternalService entity
/v1/meshes/{mesh}/meshexternalservices/{name}

MCP Tools

returns-list-meshexternalservice-mesh

Returns a list of MeshExternalService in the mesh.

read-only idempotent
returns-meshexternalservice-entity

Returns MeshExternalService entity

read-only idempotent
creates-updates-meshexternalservice-entity

Creates or Updates MeshExternalService entity

idempotent
deletes-meshexternalservice-entity

Deletes MeshExternalService entity

idempotent

Capability Spec

kuma-meshexternalservice.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Kuma API — MeshExternalService
  description: 'Kuma API — MeshExternalService. 4 operations. Lead operation: Returns a list of MeshExternalService in the
    mesh.. Self-contained Naftiko capability covering one Kuma business surface.'
  tags:
  - Kuma
  - MeshExternalService
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    KUMA_API_KEY: KUMA_API_KEY
capability:
  consumes:
  - type: http
    namespace: kuma-meshexternalservice
    baseUri: ''
    description: Kuma API — MeshExternalService business capability. Self-contained, no shared references.
    resources:
    - name: meshes-mesh-meshexternalservices
      path: /meshes/{mesh}/meshexternalservices
      operations:
      - name: getmeshexternalservicelist
        method: GET
        description: Returns a list of MeshExternalService in the mesh.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: offset
          in: query
          type: integer
          description: offset in the list of entities
        - name: size
          in: query
          type: integer
          description: the number of items per page
        - name: filter
          in: query
          type: object
          description: filter by labels when multiple filters are present, they are ANDed
        - name: mesh
          in: path
          type: string
          description: name of the mesh
          required: true
    - name: meshes-mesh-meshexternalservices-name
      path: /meshes/{mesh}/meshexternalservices/{name}
      operations:
      - name: getmeshexternalservice
        method: GET
        description: Returns MeshExternalService entity
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: mesh
          in: path
          type: string
          description: name of the mesh
          required: true
        - name: name
          in: path
          type: string
          description: name of the MeshExternalService
          required: true
      - name: putmeshexternalservice
        method: PUT
        description: Creates or Updates MeshExternalService entity
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: mesh
          in: path
          type: string
          description: name of the mesh
          required: true
        - name: name
          in: path
          type: string
          description: name of the MeshExternalService
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletemeshexternalservice
        method: DELETE
        description: Deletes MeshExternalService entity
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: mesh
          in: path
          type: string
          description: name of the mesh
          required: true
        - name: name
          in: path
          type: string
          description: name of the MeshExternalService
          required: true
    authentication:
      type: bearer
      token: '{{env.KUMA_API_KEY}}'
  exposes:
  - type: rest
    namespace: kuma-meshexternalservice-rest
    port: 8080
    description: REST adapter for Kuma API — MeshExternalService. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/meshes/{mesh}/meshexternalservices
      name: meshes-mesh-meshexternalservices
      description: REST surface for meshes-mesh-meshexternalservices.
      operations:
      - method: GET
        name: getmeshexternalservicelist
        description: Returns a list of MeshExternalService in the mesh.
        call: kuma-meshexternalservice.getmeshexternalservicelist
        with:
          offset: rest.offset
          size: rest.size
          filter: rest.filter
          mesh: rest.mesh
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/meshes/{mesh}/meshexternalservices/{name}
      name: meshes-mesh-meshexternalservices-name
      description: REST surface for meshes-mesh-meshexternalservices-name.
      operations:
      - method: GET
        name: getmeshexternalservice
        description: Returns MeshExternalService entity
        call: kuma-meshexternalservice.getmeshexternalservice
        with:
          mesh: rest.mesh
          name: rest.name
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: putmeshexternalservice
        description: Creates or Updates MeshExternalService entity
        call: kuma-meshexternalservice.putmeshexternalservice
        with:
          mesh: rest.mesh
          name: rest.name
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletemeshexternalservice
        description: Deletes MeshExternalService entity
        call: kuma-meshexternalservice.deletemeshexternalservice
        with:
          mesh: rest.mesh
          name: rest.name
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: kuma-meshexternalservice-mcp
    port: 9090
    transport: http
    description: MCP adapter for Kuma API — MeshExternalService. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: returns-list-meshexternalservice-mesh
      description: Returns a list of MeshExternalService in the mesh.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: kuma-meshexternalservice.getmeshexternalservicelist
      with:
        offset: tools.offset
        size: tools.size
        filter: tools.filter
        mesh: tools.mesh
      outputParameters:
      - type: object
        mapping: $.
    - name: returns-meshexternalservice-entity
      description: Returns MeshExternalService entity
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: kuma-meshexternalservice.getmeshexternalservice
      with:
        mesh: tools.mesh
        name: tools.name
      outputParameters:
      - type: object
        mapping: $.
    - name: creates-updates-meshexternalservice-entity
      description: Creates or Updates MeshExternalService entity
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: kuma-meshexternalservice.putmeshexternalservice
      with:
        mesh: tools.mesh
        name: tools.name
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: deletes-meshexternalservice-entity
      description: Deletes MeshExternalService entity
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: kuma-meshexternalservice.deletemeshexternalservice
      with:
        mesh: tools.mesh
        name: tools.name
      outputParameters:
      - type: object
        mapping: $.