Skip to content

Model Context Protocol (MCP) server for Kubernetes and OpenShift

License

Notifications You must be signed in to change notification settings

manusa/kubernetes-mcp-server

Folders and files

NameName
Last commit message
Last commit date
Mar 7, 2025
Feb 12, 2025
Feb 15, 2025
Mar 21, 2025
Mar 20, 2025
Mar 21, 2025
Feb 11, 2025
Feb 17, 2025
Mar 21, 2025
Mar 25, 2025
Mar 25, 2025
Feb 17, 2025

Repository files navigation

Kubernetes MCP Server

GitHub License npm GitHub release (latest SemVer) Build

✨ Features | πŸš€ Getting Started | πŸŽ₯ Demos | βš™οΈ Configuration | πŸ§‘β€πŸ’» Development

kubernetes-mcp-server.mp4

✨ 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 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.
    • Run a container image in a pod and optionally expose it.
  • βœ… Events: View Kubernetes events in all namespaces or in a specific namespace.

πŸš€ Getting Started

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:

{
  "mcpServers": {
    "kubernetes": {
      "command": "npx",
      "args": [
        "-y",
        "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:

extensions:
  kubernetes:
    command: npx
    args:
      - -y
      - kubernetes-mcp-server@latest

πŸŽ₯ 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.

kubernetes-mcp-server-fix-openshift-deployment.mp4

βš™οΈ 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.

# Run the Kubernetes MCP server using npx (in case you have npm installed)
npx kubernetes-mcp-server@latest --help
# Run the Kubernetes MCP server using the latest release binary
./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.

# Compile the project
make build
# Run the Kubernetes MCP server with mcp-inspector
npx @modelcontextprotocol/inspector@latest $(pwd)/kubernetes-mcp-server