MCP Catalogs
Home

time vs k8s-mcp-server

Side-by-side comparison to help you pick between these two MCP servers.

time
by modelcontextprotocol
k8s-mcp-server
by reza-gholizade
Stars★ 85,748★ 156
30d uses
Score7750
Official
Categories
ProductivityDeveloper ToolsCommunication
Developer ToolsOps & InfraAI / LLM Tools
LanguageTypeScriptGo
Last committhis monththis month

time · Summary

A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.

k8s-mcp-server · Summary

A Go-based MCP server that provides comprehensive Kubernetes cluster management tools through MCP protocol.

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

k8s-mcp-server · Use cases

  • AI assistants managing Kubernetes clusters through natural language commands
  • Web applications providing Kubernetes management interfaces via MCP integration
  • DevOps automation tools interacting with clusters through MCP protocol
  • Training environments for Kubernetes operations without direct CLI access

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"]
    }
  }
}

k8s-mcp-server · Install

Installation

From Source

git clone https://github.com/reza-gholizade/k8s-mcp-server.git
cd k8s-mcp-server
go mod download
go build -o k8s-mcp-server main.go

Using Docker

docker pull ginnux/k8s-mcp-server:latest
docker run -p 8080:8080 -v ~/.kube/config:/home/appuser/.kube/config:ro ginnux/k8s-mcp-server:latest

Claude Desktop Configuration

Add to your Claude Desktop config.json:

{
  "mcpServers": {
    "kubernetes": {
      "command": "k8s-mcp-server",
      "args": ["--mode", "stdio"],
      "env": {
        "KUBECONFIG": "/path/to/your/kubeconfig"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.