Linkerd · Capability

Linkerd Proxy Admin API — Health

Linkerd Proxy Admin API — Health. 2 operations. Lead operation: Linkerd Proxy liveness check. Self-contained Naftiko capability covering one Linkerd business surface.

Run with Naftiko LinkerdHealth

What You Can Do

GET
Getproxyliveness — Linkerd Proxy liveness check
/v1/live
GET
Getproxyreadiness — Linkerd Proxy readiness check
/v1/ready

MCP Tools

linkerd-proxy-liveness-check

Linkerd Proxy liveness check

read-only idempotent
linkerd-proxy-readiness-check

Linkerd Proxy readiness check

read-only idempotent

Capability Spec

proxy-admin-health.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Linkerd Proxy Admin API — Health
  description: 'Linkerd Proxy Admin API — Health. 2 operations. Lead operation: Linkerd Proxy liveness check. Self-contained
    Naftiko capability covering one Linkerd business surface.'
  tags:
  - Linkerd
  - Health
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    LINKERD_API_KEY: LINKERD_API_KEY
capability:
  consumes:
  - type: http
    namespace: proxy-admin-health
    baseUri: http://localhost:4191
    description: Linkerd Proxy Admin API — Health business capability. Self-contained, no shared references.
    resources:
    - name: live
      path: /live
      operations:
      - name: getproxyliveness
        method: GET
        description: Linkerd Proxy liveness check
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: ready
      path: /ready
      operations:
      - name: getproxyreadiness
        method: GET
        description: Linkerd Proxy readiness check
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
  exposes:
  - type: rest
    namespace: proxy-admin-health-rest
    port: 8080
    description: REST adapter for Linkerd Proxy Admin API — Health. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/live
      name: live
      description: REST surface for live.
      operations:
      - method: GET
        name: getproxyliveness
        description: Linkerd Proxy liveness check
        call: proxy-admin-health.getproxyliveness
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/ready
      name: ready
      description: REST surface for ready.
      operations:
      - method: GET
        name: getproxyreadiness
        description: Linkerd Proxy readiness check
        call: proxy-admin-health.getproxyreadiness
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: proxy-admin-health-mcp
    port: 9090
    transport: http
    description: MCP adapter for Linkerd Proxy Admin API — Health. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: linkerd-proxy-liveness-check
      description: Linkerd Proxy liveness check
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: proxy-admin-health.getproxyliveness
      outputParameters:
      - type: object
        mapping: $.
    - name: linkerd-proxy-readiness-check
      description: Linkerd Proxy readiness check
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: proxy-admin-health.getproxyreadiness
      outputParameters:
      - type: object
        mapping: $.