everything vs mcp-k8s
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mcp-k8s by silenceper | |
|---|---|---|
| Stars | ★ 85,748 | ★ 145 |
| 30d uses | — | — |
| Score | 77 | 49 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Ops & InfraDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Go |
| Last commit | this month | 1 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-k8s · Summary
Go-based MCP server for Kubernetes and Helm operations with granular control permissions.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
mcp-k8s · Use cases
- Interactive Kubernetes resource management through natural language with LLM
- Automated operations scenarios including intelligent assistant for cluster management
- Development and testing support with quick prototype validation
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingmcp-k8s · Install
Installation
- **Direct Download**: Download the binary for your platform from the [releases page](https://github.com/silenceper/mcp-k8s/releases)
- **Go Install**:
go install github.com/silenceper/mcp-k8s/cmd/mcp-k8s@latest- **Build from Source**:
git clone https://github.com/silenceper/mcp-k8s.git
cd mcp-k8s
make buildClaude Desktop Configuration
Add to your Claude Desktop config.json:
{
"mcpServers": {
"mcp-k8s": {
"command": "/path/to/mcp-k8s",
"args": [
"--kubeconfig",
"/path/to/kubeconfig",
"--enable-create",
"--enable-delete",
"--enable-update",
"--enable-list"
]
}
}
}