Kubernetes MCP Server
โจ Features | ๐ Getting Started | ๐ฅ Demos | โ๏ธ Configuration | ๐งโ๐ป Development
https://github.com/user-attachments/assets/be2b67b3-fc1c-4d11-ae46-93deba8ed98e
โจ Features
A powerful and flexible Kubernetes Model Context Protocol (MCP) server implementation with support for OpenShift.
- โ
Configuration:
- Automatically detect changes in the Kubernetes configuration and update the MCP server.
- View and manage the current Kubernetes
.kube/config
or in-cluster configuration.
- โ
Generic Kubernetes Resources: Perform operations on any Kubernetes or OpenShift resource.
- Any CRUD operation (Create or Update, Get, List, Delete).
- โ
Pods: Perform Pod-specific operations.
- List pods in all namespaces or in a specific namespace.
- Get a pod by name from the specified namespace.
- Delete a pod by name from the specified namespace.
- Show logs for a pod by name from the specified namespace.
- Exec into a pod and run a command.
- Run a container image in a pod and optionally expose it.
- โ Namespaces: List Kubernetes Namespaces.
- โ Events: View Kubernetes events in all namespaces or in a specific namespace.
- โ Projects: List OpenShift Projects.
Unlike other Kubernetes MCP server implementations, this IS NOT just a wrapper around kubectl
or helm
command-line tools.
There is no need for external dependencies or tools to be installed on the system.
If you're using the native binaries you don't even need to have Node or Python installed on your system.
๐ Getting Started
Requirements
- Access to a Kubernetes cluster.
Claude Desktop
Using npx
If you have npm installed, this is the fastest way to get started with kubernetes-mcp-server
on Claude Desktop.
Open your claude_desktop_config.json
and add the mcp server to the list of mcpServers
:
1{ 2 "mcpServers": { 3 "kubernetes": { 4 "command": "npx", 5 "args": [ 6 "-y", 7 "kubernetes-mcp-server@latest" 8 ] 9 } 10 } 11}
VS Code / VS Code Insiders
Install the Kubernetes MCP server extension in VS Code Insiders by pressing the following link:
Alternatively, you can install the extension manually by running the following command:
1# For VS Code 2code --add-mcp '{"name":"kubernetes","command":"npx","args":["kubernetes-mcp-server@latest"]}' 3# For VS Code Insiders 4code-insiders --add-mcp '{"name":"kubernetes","command":"npx","args":["kubernetes-mcp-server@latest"]}'
Goose CLI
Goose CLI is the easiest (and cheapest) way to get rolling with artificial intelligence (AI) agents.
Using npm
If you have npm installed, this is the fastest way to get started with kubernetes-mcp-server
.
Open your goose config.yaml
and add the mcp server to the list of mcpServers
:
1extensions: 2 kubernetes: 3 command: npx 4 args: 5 - -y 6 - kubernetes-mcp-server@latest 7
๐ฅ Demos
Diagnosing and automatically fixing an OpenShift Deployment
Demo showcasing how Kubernetes MCP server is leveraged by Claude Desktop to automatically diagnose and fix a deployment in OpenShift without any user assistance.
https://github.com/user-attachments/assets/a576176d-a142-4c19-b9aa-a83dc4b8d941
Vibe Coding a simple game and deploying it to OpenShift
In this demo, I walk you through the process of Vibe Coding a simple game using VS Code and how to leverage Podman MCP server and Kubernetes MCP server to deploy it to OpenShift.

โ๏ธ Configuration
The Kubernetes MCP server can be configured using command line (CLI) arguments.
You can run the CLI executable either by using npx
or by downloading the latest release binary.
1# Run the Kubernetes MCP server using npx (in case you have npm installed) 2npx kubernetes-mcp-server@latest --help
1# Run the Kubernetes MCP server using the latest release binary 2./kubernetes-mcp-server --help
Configuration Options
| Option | Description |
|--------------|------------------------------------------------------------------------------------------|
| --sse-port
| Starts the MCP server in Server-Sent Event (SSE) mode and listens on the specified port. |
๐งโ๐ป Development
Running with mcp-inspector
Compile the project and run the Kubernetes MCP server with mcp-inspector to inspect the MCP server.
1# Compile the project 2make build 3# Run the Kubernetes MCP server with mcp-inspector 4npx @modelcontextprotocol/inspector@latest $(pwd)/kubernetes-mcp-server