Kuma · Capability

Kuma API — MeshProxyPatch

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

Run with Naftiko KumaMeshProxyPatch

What You Can Do

GET
Getmeshproxypatchlist — Returns a list of MeshProxyPatch in the mesh.
/v1/meshes/{mesh}/meshproxypatches
GET
Getmeshproxypatch — Returns MeshProxyPatch entity
/v1/meshes/{mesh}/meshproxypatches/{name}
PUT
Putmeshproxypatch — Creates or Updates MeshProxyPatch entity
/v1/meshes/{mesh}/meshproxypatches/{name}
DELETE
Deletemeshproxypatch — Deletes MeshProxyPatch entity
/v1/meshes/{mesh}/meshproxypatches/{name}

MCP Tools

returns-list-meshproxypatch-mesh

Returns a list of MeshProxyPatch in the mesh.

read-only idempotent
returns-meshproxypatch-entity

Returns MeshProxyPatch entity

read-only idempotent
creates-updates-meshproxypatch-entity

Creates or Updates MeshProxyPatch entity

idempotent
deletes-meshproxypatch-entity

Deletes MeshProxyPatch entity

idempotent

Capability Spec

kuma-meshproxypatch.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Kuma API — MeshProxyPatch
  description: 'Kuma API — MeshProxyPatch. 4 operations. Lead operation: Returns a list of MeshProxyPatch in the mesh.. Self-contained
    Naftiko capability covering one Kuma business surface.'
  tags:
  - Kuma
  - MeshProxyPatch
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    KUMA_API_KEY: KUMA_API_KEY
capability:
  consumes:
  - type: http
    namespace: kuma-meshproxypatch
    baseUri: ''
    description: Kuma API — MeshProxyPatch business capability. Self-contained, no shared references.
    resources:
    - name: meshes-mesh-meshproxypatches
      path: /meshes/{mesh}/meshproxypatches
      operations:
      - name: getmeshproxypatchlist
        method: GET
        description: Returns a list of MeshProxyPatch 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-meshproxypatches-name
      path: /meshes/{mesh}/meshproxypatches/{name}
      operations:
      - name: getmeshproxypatch
        method: GET
        description: Returns MeshProxyPatch 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 MeshProxyPatch
          required: true
      - name: putmeshproxypatch
        method: PUT
        description: Creates or Updates MeshProxyPatch 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 MeshProxyPatch
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletemeshproxypatch
        method: DELETE
        description: Deletes MeshProxyPatch 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 MeshProxyPatch
          required: true
    authentication:
      type: bearer
      token: '{{env.KUMA_API_KEY}}'
  exposes:
  - type: rest
    namespace: kuma-meshproxypatch-rest
    port: 8080
    description: REST adapter for Kuma API — MeshProxyPatch. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/meshes/{mesh}/meshproxypatches
      name: meshes-mesh-meshproxypatches
      description: REST surface for meshes-mesh-meshproxypatches.
      operations:
      - method: GET
        name: getmeshproxypatchlist
        description: Returns a list of MeshProxyPatch in the mesh.
        call: kuma-meshproxypatch.getmeshproxypatchlist
        with:
          offset: rest.offset
          size: rest.size
          filter: rest.filter
          mesh: rest.mesh
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/meshes/{mesh}/meshproxypatches/{name}
      name: meshes-mesh-meshproxypatches-name
      description: REST surface for meshes-mesh-meshproxypatches-name.
      operations:
      - method: GET
        name: getmeshproxypatch
        description: Returns MeshProxyPatch entity
        call: kuma-meshproxypatch.getmeshproxypatch
        with:
          mesh: rest.mesh
          name: rest.name
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: putmeshproxypatch
        description: Creates or Updates MeshProxyPatch entity
        call: kuma-meshproxypatch.putmeshproxypatch
        with:
          mesh: rest.mesh
          name: rest.name
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletemeshproxypatch
        description: Deletes MeshProxyPatch entity
        call: kuma-meshproxypatch.deletemeshproxypatch
        with:
          mesh: rest.mesh
          name: rest.name
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: kuma-meshproxypatch-mcp
    port: 9090
    transport: http
    description: MCP adapter for Kuma API — MeshProxyPatch. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: returns-list-meshproxypatch-mesh
      description: Returns a list of MeshProxyPatch in the mesh.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: kuma-meshproxypatch.getmeshproxypatchlist
      with:
        offset: tools.offset
        size: tools.size
        filter: tools.filter
        mesh: tools.mesh
      outputParameters:
      - type: object
        mapping: $.
    - name: returns-meshproxypatch-entity
      description: Returns MeshProxyPatch entity
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: kuma-meshproxypatch.getmeshproxypatch
      with:
        mesh: tools.mesh
        name: tools.name
      outputParameters:
      - type: object
        mapping: $.
    - name: creates-updates-meshproxypatch-entity
      description: Creates or Updates MeshProxyPatch entity
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: kuma-meshproxypatch.putmeshproxypatch
      with:
        mesh: tools.mesh
        name: tools.name
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: deletes-meshproxypatch-entity
      description: Deletes MeshProxyPatch entity
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: kuma-meshproxypatch.deletemeshproxypatch
      with:
        mesh: tools.mesh
        name: tools.name
      outputParameters:
      - type: object
        mapping: $.