Extendable Kubernetes Model Context Protocol (MCP) Server - A extensible MCP server for Kubernetes operations
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"extendable-kubernetes-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A clean foundation Model Context Protocol (MCP) server that replicates all kubernetes-mcp-server functionality. This serves as a starting point for building custom extensions while maintaining full compatibility with the original server.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in devops
MCP server for using the GitLab API
Yunxiao MCP Server provides AI assistants with the ability to interact with the Yunxiao platform. It provides a set of tools that interact with Yunxiao's API, allowing AI assistants to manage Codeup repository, Project, Pipeline, Packages etc.
Enhanced MCP server for GitLab: group projects listing and activity tracking
MCP Server for kubernetes management commands
MCP Security Weekly
Get CVE alerts and security updates for Extendable Kubernetes Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A clean foundation Model Context Protocol (MCP) server that replicates all kubernetes-mcp-server functionality. This serves as a starting point for building custom extensions while maintaining full compatibility with the original server.
This server provides:
The server provides all the same tools as kubernetes-mcp-server:
# Clone both repositories
git clone https://github.com/containers/kubernetes-mcp-server.git
git clone https://github.com/friedrichwilken/extendable-kubernetes-mcp-server.git
cd extendable-kubernetes-mcp-server
# Build the server
make build
The server provides identical usage to kubernetes-mcp-server:
# Start server in stdio mode
./build/extendable-k8s-mcp
# With specific kubeconfig
./build/extendable-k8s-mcp --kubeconfig ~/.kube/config
# With specific toolsets
./build/extendable-k8s-mcp --toolsets core,helm
# Start HTTP server on port 8080
./build/extendable-k8s-mcp --port 8080
# With public HTTPS host
./build/extendable-k8s-mcp --port 8443 --sse-base-url https://example.com:8443
All kubernetes-mcp-server flags are supported:
--kubeconfig: Path to kubeconfig file--port: HTTP server port (enables HTTP mode)--sse-base-url: Public base URL for SSE endpoints--toolsets: Comma-separated list of toolsets to use--list-output: Output format (yaml, table)--read-only: Enable read-only mode--disable-destructive: Disable destructive operations--disable-multi-cluster: Disable multi-cluster tools--log-level: Set log level (0-9)This project uses a comprehensive 3-layer testing strategy to ensure reliability and compatibility. For detailed information about the testing approach, see TESTING.md.
extendable-kubernetes-mcp-server/
├── cmd/ # Main application entry point
├── pkg/cmd/ # CLI command structure
├── test/ # Comprehensive testing infrastructure
├── Makefile # Build and development tasks
├── go.mod # Go module definition
└── README.md # This file
This server provides a clean foundation for building custom MCP t