mcp-kubernetes vs time
Side-by-side comparison to help you pick between these two MCP servers.
mcp-kubernetes by Azure | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 57 | ★ 85,748 |
| 30d uses | — | — |
| Score | 46 | 77 |
| Official | — | ✓ |
| Categories | Ops & InfraDeveloper ToolsMonitoring | ProductivityDeveloper ToolsCommunication |
| Language | Go | TypeScript |
| Last commit | this month | this month |
mcp-kubernetes · Summary
An MCP server enabling AI assistants to interact with Kubernetes clusters through kubectl commands.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
mcp-kubernetes · Use cases
- Kubernetes cluster administration through natural language prompts in AI assistants
- Automated troubleshooting of pod and deployment issues using AI
- Scaling and managing Kubernetes resources via conversational AI interfaces
time · Use cases
- Assisting with international meeting scheduling across time zones
- Providing real-time time information for location-based queries
- Enabling time conversion for travel planning and itineraries
mcp-kubernetes · Install
Installation Options
Docker
{
"mcpServers": {
"kubernetes": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount",
"type=bind,src=/home/username/.kube/config,dst=/home/mcp/.kube/config",
"ghcr.io/azure/mcp-kubernetes"
]
}
}
}Local Installation
- Install kubectl: https://kubernetes.io/docs/tasks/tools/
- Install helm: https://helm.sh/docs/intro/install/
- Configure your MCP server:
{
"mcpServers": {
"kubernetes": {
"command": "<path of binary 'mcp-kubernetes'>",
"args": ["--transport", "stdio"],
"env": {
"KUBECONFIG": "<your-kubeconfig-path>"
}
}
}
}time · Install
Installation Options
**Using uv (recommended):**
uvx mcp-server-time**Using PIP:**
pip install mcp-server-time
python -m mcp_server_time**Configure for Claude Desktop:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}