K

Kubernetes

Manage Kubernetes clusters, pods, deployments and logs via kubectl actions.

·No reviews yet
Repo
Share:

About

Auto-generated

Kubernetes is a Model Context Protocol server in the Developer Tools category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about Kubernetes.

What is the Kubernetes MCP for?
The Kubernetes MCP enables management of Kubernetes clusters, pods, deployments, and logs directly through kubectl actions. It streamlines common DevOps tasks by providing an interface for interacting with Kubernetes resources.
How do I install the Kubernetes MCP in a client?
Installation in an MCP client typically involves specifying the transport mechanism as 'stdio' and providing the repository URL. Specific instructions may vary depending on the client application, such as Claude Desktop, Cursor, or Cline.
Does the Kubernetes MCP require authentication?
No, the Kubernetes MCP explicitly states 'none' as its authentication type. It operates without requiring API keys, OAuth, or other credentials for its direct operation.
Can I manage deployments using this MCP?
Yes, the Kubernetes MCP allows you to manage Kubernetes deployments. It provides capabilities for interacting with and manipulating deployment resources within your clusters.
What is a prerequisite for using the Kubernetes MCP?
A key prerequisite for using this MCP is an existing Kubernetes cluster and a configured kubectl environment. The MCP leverages kubectl actions, so a functional kubectl setup is essential.

Install Kubernetes

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "kubernetes": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-kubernetes"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "kubernetes": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-kubernetes"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "kubernetes": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-kubernetes"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.