H

Helm

Install, upgrade and inspect Helm charts on Kubernetes.

·No reviews yet
Repo
Share:

About

Auto-generated

Helm is a Model Context Protocol server in the Developer Tools category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about Helm.

What is the Helm MCP?
The Helm MCP allows you to manage Helm charts on a Kubernetes cluster. It enables common operations such as installing, upgrading, and inspecting Helm releases directly through an MCP client.
How can I install the Helm MCP in my client?
Installation typically involves adding the Helm MCP repository to your client and then installing it by its slug, 'helm'. Refer to your specific MCP client's documentation for detailed installation instructions.
Does the Helm MCP require authentication or API keys?
No, the Helm MCP itself does not require API keys or other credentials for operation. It leverages existing Kubernetes cluster access configured in your environment.
What Helm capabilities are exposed by this MCP?
This MCP exposes core Helm functionalities including the installation of new charts, upgrading existing releases, and inspecting the status and configuration of deployed Helm charts on Kubernetes.
Is there any cost associated with using the Helm MCP?
The Helm MCP is community-provided and open-source, so there is no direct licensing cost. Any costs would be associated with the underlying Kubernetes infrastructure you are managing with Helm.
What is a prerequisite for using the Helm MCP?
A primary prerequisite for using the Helm MCP is a working Kubernetes cluster with kubectl configured to access it. The MCP relies on your local Kubernetes configuration.

Install Helm

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "helm": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-helm"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "helm": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-helm"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "helm": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-helm"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.