MCP K8S Go is a Model Context Protocol server that provides AI assistants with the ability to interact with Kubernetes clusters. It allows AI models to browse and manage Kubernetes resources through a standardized interface, enabling them to list contexts, namespaces, pods, and other resources, as well as retrieve detailed information and logs from your Kubernetes environment. This tool bridges the gap between AI assistants and Kubernetes infrastructure management, making it possible to use natural language to explore and troubleshoot your clusters. With support for multiple contexts and namespaces, it provides a comprehensive interface for Kubernetes operations through AI-assisted workflows.
MCP K8S Go is a Golang implementation of a Model Context Protocol server that connects to Kubernetes clusters. It allows AI assistants like Claude to interact with your Kubernetes infrastructure, providing capabilities to list and inspect various Kubernetes resources.
You have several ways to install and use MCP K8S Go:
The easiest way to install and configure MCP K8S Go for Claude Desktop:
npx -y @smithery/cli install @strowk/mcp-k8s --client claude
Another automated installation option:
npx -y @modelcontextprotocol/get install @strowk/mcp-k8s --client claude
npm install -g @strowk/mcp-k8s
After installation, you'll need to manually configure Claude Desktop to use this MCP server.
Download the appropriate binary for your platform from the GitHub Releases page.
If you have Go installed, you can build from source:
git clone https://github.com/strowk/mcp-k8s-go.git
cd mcp-k8s-go
go build
To test the MCP server with the Inspector tool:
npx @modelcontextprotocol/inspector npx @strowk/mcp-k8s
Or if you've built from source:
tools/inspector/run.sh
MCP K8S Go provides the following tools for interacting with Kubernetes:
Lists all available Kubernetes contexts from your kubeconfig.
Lists all namespaces in a specified Kubernetes context.
Lists all nodes in a specified Kubernetes context.
Lists resources of a specified kind in a given context and namespace. Includes special mappings for common resources like pods, services, and deployments.
Retrieves detailed information about a specific resource by name, kind, context, and namespace.
Lists events in a specified context and namespace.
Retrieves logs from a specified pod in a given context and namespace.
The MCP server also provides predefined prompts:
By default, MCP K8S Go uses your standard kubeconfig file (typically located at ~/.kube/config
). The server respects the current context and configuration from this file.
You can specify a different kubeconfig file using the --kubeconfig
flag when starting the server.
MCP K8S Go provides AI assistants with access to your Kubernetes clusters. Be mindful of the permissions granted to the kubeconfig contexts you're using with this tool, especially in production environments.
If you encounter issues:
For more detailed information, visit the GitHub repository.