Kubernetes MCP Server
by Flux159 ยท โญ 743 stars ยท updated 2 months ago
Manage Kubernetes clusters through natural language. List pods, check deployments, view logs, describe resources, and run kubectl commands from your AI assistant.
77
Good
Quality Score Breakdown
maintenance79/100
community75/100
documentation77/100
compatibility77/100
Use Cases
- โmanage pods
- โcheck deployments
- โview logs
- โkubectl operations
โก One-Click Install Configs
Copy the config below and paste it into your AI client's config file.
๐ค Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"kubernetes": {
"command": "npx",
"args": [
"-y",
"mcp-server-kubernetes"
]
}
}
}โก Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"kubernetes": {
"command": "npx",
"args": [
"-y",
"mcp-server-kubernetes"
]
}
}
}๐ VS Code
.vscode/mcp.json
{
"mcp": {
"servers": {
"kubernetes": {
"command": "npx",
"args": [
"-y",
"mcp-server-kubernetes"
]
}
}
}
}