{
"mcpServers": {
"zed-mcp-server-kubernetes": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Kubernetes MCP Server Extension for Zed
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
Apache-2.0. View license →
Is it maintained?
Last commit 65 days ago.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
MCP Server for GCP environment for interacting with various Observability APIs.
MCP Server for kubernetes management commands
Model Context Protocol (MCP) server for Kubernetes and OpenShift
The power of Claude Code / GeminiCLI / CodexCLI + [Gemini / OpenAI / OpenRouter / Azure / Grok / Ollama / Custom Model / All Of The Above] working as one.
MCP Security Weekly
Get CVE alerts and security updates for Zed Mcp Server Kubernetes and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
This extension integrates Kubernetes MCP Server as a context server for Zed's Agent Panel.
To install navigate to: Zed > Extensions. Or use the command palette to search extensions.
In order for the server to work, you need to point it to the absolute path of your Kubernetes configuration file:
"context_servers": {
"mcp-server-kubernetes": {
"source": "extension",
"settings": {
"kubeconfig": "/absolute/path/to/kubeconfig"
}
}
}
The complete set of possible configuration options and their default values look like this:
"context_servers": {
"mcp-server-kubernetes": {
"source": "extension",
"settings": {
/// Absolute path to the Kubernetes configuration file.
"kubeconfig": "/absolute/path/to/kubeconfig",
/// Output format for resource list operations (one of: yaml, table) (default "table").
"list_output": "table",
/// If set, the MCP server will run in read-only mode, meaning it will not allow any write operations (create, update, delete) on the Kubernetes cluster. This is useful for debugging or inspecting the cluster without making changes.
"read_only": false,
/// If set, the MCP server will disable all destructive operations (delete, update, etc.) on the Kubernetes cluster. This is useful for debugging or inspecting the cluster without accidentally making changes. This option has no effect when `read_only` is set.
"disable_destructive": false,
/// List of toolsets to enable. Check [🛠️ Tools and Functionalities](https://github.com/containers/kubernetes-mcp-server?tab=readme-ov-file#%EF%B8%8F-tools-and-functionalities-) for more information.
"toolsets": ["config", "core", "helm"],
/// If set, the MCP server will disable multi-cluster support and will only use the current context from the kubeconfig file. This is useful if you want to restrict the MCP server to a single cluster.
"disable_multi_cluster": false
}
}
}