- Explore MCP Servers
- mcp-helm
Mcp Helm
What is Mcp Helm
mcp-helm is an MCP (Model Context Protocol) server designed to facilitate interaction with Helm repositories and charts, allowing AI assistants to query and retrieve chart information without requiring local Helm installations.
Use cases
Use cases for mcp-helm include automating the retrieval of Helm chart information for deployment scripts, enabling AI-driven tools to interact with Helm repositories, and simplifying the management of Helm charts in various environments.
How to use
To use mcp-helm, you can run it via Docker, download a pre-built binary, install it using Go, or build it from source. The server can be configured to connect with MCP clients for seamless operation.
Key features
Key features of mcp-helm include listing all charts in a Helm repository, retrieving the latest version of a specific chart, and accessing the values file for a chart.
Where to use
mcp-helm can be used in environments where Helm charts are utilized, particularly in DevOps, CI/CD pipelines, and cloud-native application development.
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Overview
What is Mcp Helm
mcp-helm is an MCP (Model Context Protocol) server designed to facilitate interaction with Helm repositories and charts, allowing AI assistants to query and retrieve chart information without requiring local Helm installations.
Use cases
Use cases for mcp-helm include automating the retrieval of Helm chart information for deployment scripts, enabling AI-driven tools to interact with Helm repositories, and simplifying the management of Helm charts in various environments.
How to use
To use mcp-helm, you can run it via Docker, download a pre-built binary, install it using Go, or build it from source. The server can be configured to connect with MCP clients for seamless operation.
Key features
Key features of mcp-helm include listing all charts in a Helm repository, retrieving the latest version of a specific chart, and accessing the values file for a chart.
Where to use
mcp-helm can be used in environments where Helm charts are utilized, particularly in DevOps, CI/CD pipelines, and cloud-native application development.
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Content
MCP Helm Server
An MCP (Model Context Protocol) server that provides tools for interacting with Helm repositories and charts. This
server enables AI assistants to query Helm repositories, retrieve chart information, and access chart values without
requiring local Helm installation.
The purpose of using MCP for Helm is to avoid making up format of values.yaml and contents of the charts when working
with LLMs.
Instead, the server provides a standardized way to access this information, making it easier for AI assistants to
interact with Helm charts and repositories.
This MCP server is and will be providing tools for working with Helm repositories only. If you need to work with other
Kubernetes resources, consider using a separate MCP server that provides tools for Kubernetes resources.
Features
The MCP Helm server provides the following tools:
- list_repository_charts - Lists all charts available in a Helm repository
- get_latest_version_of_chart - Retrieves the latest version of a specific chart
- get_chart_values - Retrieves the values file for a chart (latest version or specific version)
- get_chart_contents - Retrieves the contents of a chart (including templates, values, and metadata).
- get_chart_dependencies - Retrieves the dependencies of a chart as defined in its
Chart.yamlfile.
Try without installation
There is a publicly available instance of the MCP Helm server that you can use to test the features without installing
it: https://mcp-helm.zekker.dev/sse
Installation
Run with docker
You can run the MCP Helm server using Docker. This is the easiest way to get started without needing to install Go or
build from source.
docker run -d --name mcp-helm -p 8012:8012 --command ghcr.io/zekker6/mcp-helm:v0.0.5 -mode=sse
Note that the --mode=sse flag is used to enable Server-Sent Events mode, which used by MCP clients to connect.
Alternatively, you can use -mode=http to enable Streamable HTTP mode.
Via pre-build binary
Download binary from the releases page.
Example for Linux x86_64 (note that other architectures and platforms are also available):
latest=$(curl -s https://api.github.com/repos/zekker6/mcp-helm/releases/latest | grep 'tag_name' | cut -d\" -f4)
wget https://github.com/zekker6/mcp-helm/releases/download/$latest/mcp-helm_Linux_x86_64.tar.gz
tar axvf mcp-helm_Linux_x86_64.tar.gz
Via Mise
Mise (mise-en-place) is a development environment setup tool.
mise i ubi:zekker6/mcp-helm@latest
Install with Go
Note: Go 1.24.3 is required.
go install github.com/zekker6/mcp-helm/cmd/mcp-helm@latest
Build from Source
Note: Go 1.24.3 is required.
-
Clone the repository:
git clone https://github.com/zekker6/mcp-helm.git cd mcp-helm -
Build the binary:
go build -o mcp-helm ./cmd/mcp-helm -
Run the server:
./mcp-helm
Configuration
Configure your MCP client to connect to this server. The server implements the standard MCP protocol for tool discovery
and execution.
Roadmap
- [ ] Add more tools
- [x] List all charts in a repository
- [x] Get latest version of the chart
- [x] Get values for chart
- [x] Get values for the latest version of the chart
- [x] Extract full chart content
- [x] Extract dependant charts from Charts.yaml
- [ ] Extract images used in chart
- [ ] Support using private registries
- [ ] Add a way to provide credentials
Dev Tools Supporting MCP
The following are the main code editors that support the Model Context Protocol. Click the link to visit the official website for more information.










