Helm · Capability

Helm Chart Repository API — ChartMuseum

Helm Chart Repository API — ChartMuseum. 6 operations. Lead operation: Helm List all charts. Self-contained Naftiko capability covering one Helm business surface.

Run with Naftiko HelmChartMuseum

What You Can Do

GET
Listallcharts — Helm List all charts
/v1/api/charts
POST
Uploadchart — Helm Upload chart package
/v1/api/charts
GET
Getchartversions — Helm Get chart versions
/v1/api/charts/{chartname}
GET
Getchartversion — Helm Get specific chart version
/v1/api/charts/{chartname}/{version}
DELETE
Deletechartversion — Helm Delete chart version
/v1/api/charts/{chartname}/{version}
POST
Uploadprovenance — Helm Upload provenance file
/v1/api/prov

MCP Tools

helm-list-all-charts

Helm List all charts

read-only idempotent
helm-upload-chart-package

Helm Upload chart package

helm-get-chart-versions

Helm Get chart versions

read-only idempotent
helm-get-specific-chart-version

Helm Get specific chart version

read-only idempotent
helm-delete-chart-version

Helm Delete chart version

idempotent
helm-upload-provenance-file

Helm Upload provenance file

Capability Spec

chart-repository-chartmuseum.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Helm Chart Repository API — ChartMuseum
  description: 'Helm Chart Repository API — ChartMuseum. 6 operations. Lead operation: Helm List all charts. Self-contained
    Naftiko capability covering one Helm business surface.'
  tags:
  - Helm
  - ChartMuseum
  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-chartmuseum
    baseUri: https://{repository-host}
    description: Helm Chart Repository API — ChartMuseum business capability. Self-contained, no shared references.
    resources:
    - name: api-charts
      path: /api/charts
      operations:
      - name: listallcharts
        method: GET
        description: Helm List all charts
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: uploadchart
        method: POST
        description: Helm Upload chart package
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: api-charts-chartName
      path: /api/charts/{chartName}
      operations:
      - name: getchartversions
        method: GET
        description: Helm Get chart versions
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: api-charts-chartName-version
      path: /api/charts/{chartName}/{version}
      operations:
      - name: getchartversion
        method: GET
        description: Helm Get specific chart version
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: deletechartversion
        method: DELETE
        description: Helm Delete chart version
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: api-prov
      path: /api/prov
      operations:
      - name: uploadprovenance
        method: POST
        description: Helm Upload provenance file
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
  exposes:
  - type: rest
    namespace: chart-repository-chartmuseum-rest
    port: 8080
    description: REST adapter for Helm Chart Repository API — ChartMuseum. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/api/charts
      name: api-charts
      description: REST surface for api-charts.
      operations:
      - method: GET
        name: listallcharts
        description: Helm List all charts
        call: chart-repository-chartmuseum.listallcharts
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: uploadchart
        description: Helm Upload chart package
        call: chart-repository-chartmuseum.uploadchart
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/charts/{chartname}
      name: api-charts-chartname
      description: REST surface for api-charts-chartName.
      operations:
      - method: GET
        name: getchartversions
        description: Helm Get chart versions
        call: chart-repository-chartmuseum.getchartversions
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/charts/{chartname}/{version}
      name: api-charts-chartname-version
      description: REST surface for api-charts-chartName-version.
      operations:
      - method: GET
        name: getchartversion
        description: Helm Get specific chart version
        call: chart-repository-chartmuseum.getchartversion
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletechartversion
        description: Helm Delete chart version
        call: chart-repository-chartmuseum.deletechartversion
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/prov
      name: api-prov
      description: REST surface for api-prov.
      operations:
      - method: POST
        name: uploadprovenance
        description: Helm Upload provenance file
        call: chart-repository-chartmuseum.uploadprovenance
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: chart-repository-chartmuseum-mcp
    port: 9090
    transport: http
    description: MCP adapter for Helm Chart Repository API — ChartMuseum. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: helm-list-all-charts
      description: Helm List all charts
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: chart-repository-chartmuseum.listallcharts
      outputParameters:
      - type: object
        mapping: $.
    - name: helm-upload-chart-package
      description: Helm Upload chart package
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: chart-repository-chartmuseum.uploadchart
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: helm-get-chart-versions
      description: Helm Get chart versions
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: chart-repository-chartmuseum.getchartversions
      outputParameters:
      - type: object
        mapping: $.
    - name: helm-get-specific-chart-version
      description: Helm Get specific chart version
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: chart-repository-chartmuseum.getchartversion
      outputParameters:
      - type: object
        mapping: $.
    - name: helm-delete-chart-version
      description: Helm Delete chart version
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: chart-repository-chartmuseum.deletechartversion
      outputParameters:
      - type: object
        mapping: $.
    - name: helm-upload-provenance-file
      description: Helm Upload provenance file
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: chart-repository-chartmuseum.uploadprovenance
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.