Helm · Capability

Helm Chart Repository API — Repository

Helm Chart Repository API — Repository. 2 operations. Lead operation: Helm Get repository health. Self-contained Naftiko capability covering one Helm business surface.

Run with Naftiko HelmRepository

What You Can Do

GET
Gethealth — Helm Get repository health
/v1/health
GET
Getrepositoryindex — Helm Get repository index
/v1/index-yaml

MCP Tools

helm-get-repository-health

Helm Get repository health

read-only idempotent
helm-get-repository-index

Helm Get repository index

read-only idempotent

Capability Spec

chart-repository-repository.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Helm Chart Repository API — Repository
  description: 'Helm Chart Repository API — Repository. 2 operations. Lead operation: Helm Get repository health. Self-contained
    Naftiko capability covering one Helm business surface.'
  tags:
  - Helm
  - Repository
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    HELM_API_KEY: HELM_API_KEY
capability:
  consumes:
  - type: http
    namespace: chart-repository-repository
    baseUri: https://{repository-host}
    description: Helm Chart Repository API — Repository business capability. Self-contained, no shared references.
    resources:
    - name: health
      path: /health
      operations:
      - name: gethealth
        method: GET
        description: Helm Get repository health
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: index.yaml
      path: /index.yaml
      operations:
      - name: getrepositoryindex
        method: GET
        description: Helm Get repository index
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
  exposes:
  - type: rest
    namespace: chart-repository-repository-rest
    port: 8080
    description: REST adapter for Helm Chart Repository API — Repository. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/health
      name: health
      description: REST surface for health.
      operations:
      - method: GET
        name: gethealth
        description: Helm Get repository health
        call: chart-repository-repository.gethealth
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/index-yaml
      name: index-yaml
      description: REST surface for index.yaml.
      operations:
      - method: GET
        name: getrepositoryindex
        description: Helm Get repository index
        call: chart-repository-repository.getrepositoryindex
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: chart-repository-repository-mcp
    port: 9090
    transport: http
    description: MCP adapter for Helm Chart Repository API — Repository. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: helm-get-repository-health
      description: Helm Get repository health
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: chart-repository-repository.gethealth
      outputParameters:
      - type: object
        mapping: $.
    - name: helm-get-repository-index
      description: Helm Get repository index
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: chart-repository-repository.getrepositoryindex
      outputParameters:
      - type: object
        mapping: $.